Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [geclipse-dev] New Plug-ins in CVS

Thanks Thomas!

BTW, in eu.geclipse.aws.internal.s3.S3FileStore#openOutputStream(...) I am making use of piped streams. I had a try with your implementations since I know the java.io ones had/have this annoying bug. Unfortunately it turned out that with your streams nothing worked (think it was due to your available()-implementation). So I switched back to the java.io versions which seem to work quite fine.

Maybe this is a good test case for your streams you may use to improve your implementation ;-)

Cheers, Mathias

-----Ursprüngliche Nachricht-----
Von: geclipse-dev-bounces@xxxxxxxxxxx [mailto:geclipse-dev-bounces@xxxxxxxxxxx] Im Auftrag von Thomas Köckerbauer
Gesendet: Montag, 3. März 2008 14:41
An: Developer mailing list
Betreff: Re: [geclipse-dev] New Plug-ins in CVS

Hi

The plugin used isEmpty() of the String class, which was added in Java 6, I've 
changed it to .length() == 0 to also compile on JDK 1.5.


Cheers,
Thomas


Am Montag 03 März 2008 14:12:31 schrieb Stuempert, Mathias IWR:
> Dear All,
>
>
>
> Please find three new plug-ins in the CVS:
>
>
>
> -          com.aws
>
> -          eu.geclipse.aws
>
> -          eu.geclipse.aws.ui
>
>
>
> These plug-ins contain a first support for the Amazon S3 service. To use
> them you should have am AWS account and subscribe to the S3 service
> (aws.amazon.com). Of course you don't get this for free. But just to
> give you a number, the development of these plug-ins with a lot of
> testing (uploading, downloading etc.) was about 0.06 Euros which is
> quite fair. So if you would like to give it a try you should do so.
>
>
>
> The implementation comes with:
>
>
>
> -          Authentication token, i.e. AWS credential created from your
> access key ID and secret key (can be found on your AWS account)
>
> -          Full support for S3, i.e. listing, opening, saving, deleting,
> new files (called objects), copying from and to S3. New folders (called
> buckets) does not yet work.
>
>
>
> I had several tests in combination with local and gridFTP connections
> and for me everything seems to work quite smoothly. The only issue I
> found was related to the GridElementTransferOperation, so please also
> update eu.geclipse.ui if you would like to test things.
>
>
>
> It would be nice if I could have some feedback if things are working for
> you before the end of the week since I will then prepare the DVDs for
> the EclipseCon tutorial and they will contain this first version of S3.
>
>
>
> Cheers, Mathias


_______________________________________________
geclipse-dev mailing list
geclipse-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/geclipse-dev


Back to the top