Re: Why would jsessionid not appear?

2001-08-08 Thread Craig R. McClanahan
The jsessionid path parameter will only be added if the servlet container does not know whether your client supports cookies. How Tomcat handles this (probably typical of others): * On the first response in a session, send the session id both ways (cookie and encoding). * If the subsequent re

Re: Why would jsessionid not appear?

2001-08-08 Thread Brian . Duchouquette
To follow up my last message: jsessionid is now being passed from index.jsp to my next form: CreateStakeholder.jsp. CreateStakeholder.jsp does not seem to recognize jsessionid when it is sent, and does not re-write the link tags. __