RE: Can not access wiki..

2010-11-19 Thread Thierry Boileau
Hello Nick, another person has reported this error in the Opera forum = http://my.opera.com/community/forums/topic.dml?id=807312t=1290154364page=1#comment7706822 Best regards, Thierry Boileau --

Adding sessions to a REST(let) application

2010-11-19 Thread Fabian Mandelbaum
Hello there, We're currently facing a dillema with our REST application. Since we sell accounts for this application, we'd need a way to limit the concurrent number of users using an account. It happens that we sell one account and have many users use the authentication credentials of that

Re: Adding sessions to a REST(let) application

2010-11-19 Thread Fabian Mandelbaum
Hello Stephan, thanks for your answers, more questions between lines: On Fri, Nov 19, 2010 at 2:13 PM, Stephan Koops stephan.ko...@web.de wrote: Hi Fabian, We thought about having the client send a cookie (I'm cookie-ignorant) with each request, and have the resources check that cookie, which

Re: Adding sessions to a REST(let) application

2010-11-19 Thread Tal Liron
There's nothing in REST for or against sessions -- that's not its domain. Your higher level app can definitely have sessions. I do not recommend renewing your cookie for every request to keep the session from expiring. Instead, have your cookie store a session ID, and maintain a session table

How flush output stream

2010-11-19 Thread Macel Ruff
Hi, in the Representation represent(Variant variant) method i would like to flush all bytes back to the browser before this method returns (so I know that all went well and commit the task). Is there any access to HttpServletResponse.getOutputStream.flush() or similar? Thanks Marcel --