RE: Re:Access to HttpSession from Restlet ...

2010-02-24 Thread Stephan Koops
- Von: Stefan Meissner Gesendet: 24.02.2010 17:10:42 An: discuss@restlet.tigris.org Betreff: RE: Re:Access to HttpSession from Restlet ... OK, does the same constraint apply for SSL sessions? Is it possible to get the SSL session IDs using Simple HTTPS server connector? Can the SSLSessionContext

RE: Re:Access to HttpSession from Restlet ...

2010-02-24 Thread Stefan Meissner
OK, does the same constraint apply for SSL sessions? Is it possible to get the SSL session IDs using Simple HTTPS server connector? Can the SSLSessionContext IDs be used in the same way as in servlet API like this: String sslID =

RE: Re:Access to HttpSession from Restlet ...

2010-02-24 Thread webpost
Is it possible to get the SSL session IDs using Simple HTTPS server connector? Can the SSLSessionContext IDs be used in the same way as in servlet API like this: String sslID = (String)request.getAttribute(javax.servlet.request.ssl_session); What I did so far: Server server =

RE: Re:Access to HttpSession from Restlet ...

2010-02-24 Thread Stefan Meissner
Hi Stephan, the use of SSL ID is required in the project I am working on. But as you said, REST might be not the right choice for the implementation then. thanks for your reply Stefan --