RE: Re: HTTP Basic Authentication and Spring

2010-01-12 Thread Fly
Hi, THanks for response, but I actually figured this out. The reason for not working was my appcontext.xml settings overlapping with the code above, so I had to do the wiring in one place. --

RE: Re: Applying multiple security scheme's to a uri

2010-01-12 Thread webpost
Thanks for your response. Will try it out. --KD -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=2436555

servlet mapping question

2010-01-12 Thread webpost
hello! I run a restlet application inside a j2ee container. in my web xml are the following entries: servlet-mapping servlet-nameRestletServlet/servlet-name url-pattern/restlet/*/url-pattern /servlet-mapping and welcome-file-list welcome-fileindex.html/welcome-file /welcome-file-list

Confusion over deprecated Route

2010-01-12 Thread webpost
The tutorials show using Router, whose attach() method returns Route, deprecated in favor of TemplateRoute. So am I supposed to be using something instead of Router now? --

Restletdoc

2010-01-12 Thread Xavier M.
Hello, I would like to know your opinion about a kind of javadoc for restlet we could call restletdoc. A rest api is an api as the others, so it could be interesting to have a web representation of this api like the one we have for java or other languages. In this restlet doc we would have : *

Access to HttpSession from Restlet ...

2010-01-12 Thread Eugene Batogov
Hello all. I use Restlet-2.0M5 over servlet with Jetty-6.1.21. Can I get access to HttpSession from ServerResource or Request ? I understand, that restlet include cookies support, But how I may get HttpSession ? Thanks. -- Best Regards, Eugene Batogov

Re:Access to HttpSession from Restlet ...

2010-01-12 Thread Stephan Koops
Hi Eugene, RESTful application have NO session state (see http://en.wikipedia.org/wiki/Representational_State_Transfer#Constraints for example). So you have no access to the session state. best regards    Stephan Koops Eugene Batogov schrieb: Hello all. I use Restlet-2.0M5 over servlet with

Stream closed Exception

2010-01-12 Thread Sanjay Acharya
I have noticed the following issue when using Simple framework being mentioned on other discussions on the Restlet thread. I am however not exactly sure as to the correct direction for the same. When using Restlet without a Servlet Container, we see the following exception, An exception

Re: Restletdoc

2010-01-12 Thread Xavier Mehaut
hi stephan ive rather thought about a tool generating the restdoc from code in fact regards xavier Le 12 janv. 2010 à 19:46, Stephan Koops stephan.ko...@web.de a écrit : Hi Xavier, there is WADL (Web Application Description Language). Do you took a look to this? best regards

Re: Confusion over deprecated Route

2010-01-12 Thread Thierry Boileau
Hello, you can simply use TemplateRoute : TemplateRoute route = router.attach(...); I update the tutorial. Best regards, Thierry Boileau The tutorials show using Router, whose attach() method returns Route, deprecated in favor of TemplateRoute. So am I supposed to be using something