RE: restlet + aws sdb

2011-06-21 Thread Andrei Pozolotin
Jerome: 1) which existing extensions would provide a good jump start / template to begin coding for retlet-ext-aws-sdb? 2) does it make sense to go with jclouds instead of aws api http://www.jclouds.org/ or is it an overkill? Andrei --

RE: restlet + aws sdb

2011-06-21 Thread Jerome Louvel
Hi Andrei, 1) I would have a look at the OData extension and its Service class as a way to provide a higher-level abstraction on top of ClientResource. In term of authentication, I would look at the org.restlet.ext.ssl extension and its support for AWS S3 scheme which looks quite close. This

Re: (no subject)

2011-06-21 Thread Xavier Méhaut
Bonjour Jérome, Juste un petit mail pour vous signaler l'existence d'un produit que je trouve bluffant en java : http://www.ateji.com/px/index.html associé aux restlets, cela pourrait améliorer les performances j'imagine. Cordialement Xavier 2011/6/17 Jerome Louvel jerome.lou...@noelios.com

Re: (no subject)

2011-06-21 Thread Tim Peierls
Are you suggesting using a Java-like language with parallelism constructs to rewrite the Restlet internals? That doesn't sound like a good idea. Or do you just mean that Restlet users might find such a language helpful in writing Restlet applications? If so, my response is that it might be, but

Re: (no subject)

2011-06-21 Thread Xavier Méhaut
Thanks Tim for your answer... The REST paradigm is of course orthogonal with parallelism from the user point of view. I've actually thought of using the Ateji features to maybe have a better handle of the misc processing by share out them at best to cores... But I agree it is a little bit out of

RE: restlet + aws sdb

2011-06-21 Thread Andrei Pozolotin
Jerome: 1) yes, I am up to the job; please create wiki; 2) any chance you could move source to github? I can not stand svn anymore :-) Andrei. -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2771605

Re: restlet + aws sdb

2011-06-21 Thread Tim Peierls
On Tue, Jun 21, 2011 at 12:12 PM, Andrei Pozolotin andrei.pozolo...@gmail.com wrote: 2) any chance you could move source to github? I can not stand svn anymore :-) Hmm. I very much prefer svn (I have had terrible difficulties working with git-oriented projects), but I think it's best if the

RE: restlet + aws sdb

2011-06-21 Thread Jerome Louvel
Andrei, Great! I've just created the spec page: http://wiki.restlet.org/developers/172-restlet/g5/411-restlet.html Could you send me your Daisy ID so I can grant you edit rights? Also, let's move this thread to the c...@restlet.tigris.org list from now on. Best regards, Jerome -- Restlet ~

RE: restlet + aws sdb

2011-06-21 Thread Andrei Pozolotin
wiki-id : andrei.pozolotin sandbox : https://github.com/carrot-garden/carrot-org.restlet.ext.simpledb -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2771663

Re: restlet + aws sdb

2011-06-21 Thread Andrei Pozolotin
Tim: Original Message Subject: Re: restlet + aws sdb From: Tim Peierls t...@peierls.net To: discuss@restlet.tigris.org Date: Tue 21 Jun 2011 01:10:07 PM CDT On Tue, Jun 21, 2011 at 12:12 PM, Andrei Pozolotin andrei.pozolo...@gmail.com mailto:andrei.pozolo...@gmail.com wrote:

RE: restlet + aws sdb

2011-06-21 Thread Jerome Louvel
Hi guys, Please let’s continue this discussion at mailto:c...@restlet.tigris.org c...@restlet.tigris.org. It only concerns Restlet developers/contributors, so let’s not bother regular users with our SVN vs Git debates J Cheers, Jerome De : Andrei Pozolotin

Restlet Framework 2.0.8 and 2.1 M5 released

2011-06-21 Thread Jerome Louvel
Hi all, We are pleased to announce the release of two versions today as well as a new chapter of the Restlet in Action book! All details are available here : http://blog.noelios.com/2011/06/21/restlet-framework-2-1-m5-and-2-0-8-released/

Re: Restlet Framework 2.0.8 and 2.1 M5 released

2011-06-21 Thread Andrei Pozolotin
*Jerome: * 1) thanks for the update; chapter 9 is what I needed: re: restlet + beanstalk 2) M5 is not in the repo? http://maven.restlet.org/org/restlet/jse/org.restlet/ Thank you, Andrei Original Message Subject: Restlet Framework 2.0.8 and 2.1

Restlet and Spring - Engine and Component

2011-06-21 Thread Paul Morris
Can somebody give me a hint as to how to use spring bean injection to do the following within the Component? Here is the functionality I need to achieve within my applicationContext.xml: Engine.getInstance().getRegisteredAuthenticators().add(new AuthenticatorHelper()); This is as far as I've

Re: Restlet and Spring - Engine and Component

2011-06-21 Thread Rhett Sutphin
Hi Paul, On Jun 21, 2011, at 6:54 PM, Paul Morris wrote: Can somebody give me a hint as to how to use spring bean injection to do the following within the Component? Here is the functionality I need to achieve within my applicationContext.xml:

Re: Using Spring and Servlet extensions together

2011-06-21 Thread Rhett Sutphin
Hi Paul, On Jun 21, 2011, at 9:09 PM, Paul Morris wrote: Would someone be able to post (or point me to) a simple example using Spring and Servlet extensions? Specifically I want to use Restlet as the main container. I'm having trouble figuring out how the web.xml file should look because