just to confirm, jsessionid can be used regardless of whether or not one is 
using GET or POST?

thanks.


At 10:33 02/05/27 -0700, you wrote:

>Sessions work just fine with both GET and POST -- but they are guaranteed
>to fail if used in the manner you described above.  The reason for this is
>that session ids are *path* parameters, not *query* parameters.  In
>addition, the parameter name is "jsessionid" instead of "JSESSIONID".  Try
>something like this instead:
>
>  http://theurl.com/theservlet;jsessionid=A4A0314540585318A4F5E327F1457375
>
>(Note the semicolon rather than the question mark).
>
>See the servlet specification
>(http://java.sun.com/products/servlet/download.html) and the relevant RFCs
>about URL syntax, to understand the differences.
>
>
> > thanks.
>
>Craig
>
>
>--
>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to