RE: Re: get and send Cookie not working....

2007-08-20 Thread Mitch Stewart
Regis, We've used the cookie feature in both Jetty and Tomcat (version 5.5.23). While testing, we found that if the cookie information was not set correctly, then the cookies would not be sent back to the server because of browser security implementations. Here are some things which prevented us

RE: Re: Re: get and send Cookie not working....

2007-08-20 Thread Mitch Stewart
You have it now, the browser will only send cookies back that match the domain you are requesting. You will not need to set domain/path if you are creating cookies in the restlet code as long as you hit the right domain in the browser. Mitch but if you try with

parsing the query string - newbie question

2007-08-20 Thread Pete
in the handlePost method of my resource class, request.getEntity().getText() returns me a query string like a=bc=de=f etc. is there anything restlet has to parse such query string and return map or something? I see that the only way you can get you data from org.restlet.data.Request is