You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Barry Books <tr...@gmail.com> on 2011/03/03 13:34:54 UTC

[ANN] Tapestry AWS Services

Now that I figured out GitHub I'm posting another library I use all
the time. This is really just a AppModule that makes the AWS java
library work as a set of Tapestry Services. Then you can do things
like

public class S3Index {
        @Inject
        private AmazonS3 amazonS3;

        @Property
        private List<Bucket> buckets;

        @BeginRender
        void beginRender() {
                buckets = amazonS3.listBuckets();
        }
}

S3Index.tml

<t:grid t:id="buckets"/>


There is also service that uses a javax.mail.Session to send email via
SES so it's easy to convert existing emails to SES.

See
http://aws.amazon.com/sdkforjava/

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [ANN] Tapestry AWS Services

Posted by bhorvat <ho...@gmail.com>.
https://github.com/trsvax/tapestry-aws-core

there are two .. in your link :)

--
View this message in context: http://tapestry.1045711.n5.nabble.com/ANN-Tapestry-AWS-Services-tp3407864p5645466.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [ANN] Tapestry AWS Services

Posted by bhorvat <ho...@gmail.com>.
The url is broken can you reposted? 

--
View this message in context: http://tapestry.1045711.n5.nabble.com/ANN-Tapestry-AWS-Services-tp3407864p5645394.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [ANN] Tapestry AWS Services

Posted by Barry Books <tr...@gmail.com>.
https://github..com/trsvax/tapestry-aws-core

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [ANN] Tapestry AWS Services

Posted by Mark <ma...@xeric.net>.
Sounds great, but did you forget the github url? :)

Mark

On Thu, Mar 3, 2011 at 6:34 AM, Barry Books <tr...@gmail.com> wrote:
> Now that I figured out GitHub I'm posting another library I use all
> the time. This is really just a AppModule that makes the AWS java
> library work as a set of Tapestry Services. Then you can do things
> like
>
> public class S3Index {
>        @Inject
>        private AmazonS3 amazonS3;
>
>        @Property
>        private List<Bucket> buckets;
>
>        @BeginRender
>        void beginRender() {
>                buckets = amazonS3.listBuckets();
>        }
> }
>
> S3Index.tml
>
> <t:grid t:id="buckets"/>
>
>
> There is also service that uses a javax.mail.Session to send email via
> SES so it's easy to convert existing emails to SES.
>
> See
> http://aws.amazon.com/sdkforjava/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org