RE: The server has not found anything matching the request URI

2010-05-21 Thread Jerome Louvel
Hi Shrileckha, Here is the current roadmap of the framework: http://www.restlet.org/about/roadmap 2.0 RC3 is good for new developments and 2.0.0 should be out in June or July, depending on blocking issues to be fixed. However, 2.0.0 will not immediately be marked as 'stable' yet as we want to

RE: What is the release date of restlet 2.0?

2010-05-21 Thread Jerome Louvel
Hi Chandra, Please check our public roadmap; we try to keep it up to date. http://www.restlet.org/about/roadmap Best regards, Jerome Louvel -- Restlet ~ Founder and Technical Lead ~ http://www.restlet.org Noelios Technologies ~ http://www.noelios.com -Message d'origine- DeĀ : chandra

RE: A Couple Restlet 2.0rc2 Documentation Comments

2010-05-21 Thread Jerome Louvel
Hi Alex, You should be just fine overriding Finder#find(), especially if you don't use targetClass property. I've clarified the Javadocs of Finder based on your feed-back. The 2.0 snapshot has been automatically updated yesterday as well as the online Javadocs.

RE: Status of Asynchronous Support

2010-05-21 Thread Jerome Louvel
Hi Tal, 1. This is a good point that needs to be explored. The current path we are following is to deal with high-load directly inside the internal connector, for example to stop accepting new connections at IO level if we are overloaded, or giving a priority of responses sending over new

Difference Between Internal Server Connector and Grizzly in 2.0RC3?

2010-05-21 Thread Alex Milowski
I've been working on migrating my Atomojo [1] project to Restlet 2.0 and I've run into a strange problem. My junit tests hang with the internal server connector but they don't with the grizzly connector. I moved to the recent RC3 release and seem to have the same problem. If I add a call to

restlet on ijetty

2010-05-21 Thread Martin Svensson
Hi all, I have been working on running restlet ontop of ijetty. I can let you know that it works. If the interest is there I would be happy to share how this was done. Is there anyone in particular I should contact in terms of android restlet development cheers, martin

Re: restlet jaxrs cookie question

2010-05-21 Thread Stephan Koops
Hi Srisam, I don't understand the org.restlet.test layout well enough to build a new testcase that will build a mock jaxrs Response and put it through the restlet lifecycle. No problem, it is a little bit complicated. However I think I found the cause for the cookie setting bug.

Re: restlet jaxrs cookie question

2010-05-21 Thread Stephan Koops
Hi However I think I found the cause for the cookie setting bug. NewCookieHeaderDelegate:toString is using CookieWriter. It needs to use org.restlet.engine.http.header.CookieSettingWriter. it should say return CookieSettingWriter.write(Converter.toRestletCookieSetting(newCookie)); With