RE: Implementation of the sessions

2002-05-21 Thread Benjamin Fonzé [benja . be]
To: Tomcat Dev List Subject: Re: Implementation of the sessions On Tue, 2002-05-21 at 01:34, Benjamin Fonzé [benja.be] wrote: So I suppose it’s URL rewriting, but I don’t see some variables transmitted… like page.jsp?SESSION_INFO= It's called 'jsessionid' and it gets there by explicit encoding

RE: Implementation of the sessions

2002-05-21 Thread Bojan Smojver
On Tue, 2002-05-21 at 17:32, Benjamin Fonzé [benja.be] wrote: What is that mechanism ? SSL establishes a session before HTTP protocol gets on top of it (i.e. SSL is a transport layer). Once that happens, the container (Tomcat) might have access to the SSL Session ID (I know that part to be

Re: Implementation of the sessions

2002-05-21 Thread Rolf Veen
Benjamin Fonzé [benja.be] wrote: What is that mechanism ? See http://www.mozilla.org/projects/security/pki/nss/ssl/ for links to SSL and TLS specs and other related information. For sessions thru cookies, see RFC-2965 (at rfc-editor.org, for example). Regards. Rolf. -- To unsubscribe,

RE: Implementation of the sessions

2002-05-21 Thread Benjamin Fonzé [benja . be]
Thank you for your help Bojan and Rolf. I'll try to understand all that :) Benja. -Original Message- From: Bojan Smojver [mailto:[EMAIL PROTECTED]] Sent: mardi 21 mai 2002 9:46 To: Tomcat Dev List Subject: RE: Implementation of the sessions On Tue, 2002-05-21 at 17:32, Benjamin

Implementation of the sessions

2002-05-20 Thread Benjamin Fonzé [benja . be]
Hello guys, I’m currently writing a thesis about JSP/Java, etc… in an e-Learning application. I need to know how the sessions (HttpSession) are managed in Tomcat. I read it can be URL rewriting or cookies (on the java.sun web site), but I block the cookies and there are no cookies on my disk.

Re: Implementation of the sessions

2002-05-20 Thread Bojan Smojver
On Tue, 2002-05-21 at 01:34, Benjamin Fonzé [benja.be] wrote: So I suppose it’s URL rewriting, but I don’t see some variables transmitted… like page.jsp?SESSION_INFO= It's called 'jsessionid' and it gets there by explicit encoding of the URL. You should check the Java Servlet Specification,