Hi, > -----Original Message----- > From: Pavel Brun [mailto:[EMAIL PROTECTED]] > Sent: Saturday, February 09, 2002 6:48 PM > To: Tomcat User > Subject: Session Management between IIS and Tomcat > > > I have already posted this question a while ago, but I was wondering if > anybody knows > of a mechanism for sharing an IIS session with Tomcat and vice versa? I > would greatly > appreciate any information anyone can give me. Even if there is > no solution, > I would > appreciate someone telling me that "it is not possible", or "it would be > difficult". >
I think it's not possible in terms of servlet engine sessions. Session is a java object and it's typically used to store some information in it. I bet IIS session's purpose is the same but with native windows code. There is more: Cookie name and url-rewriting parameter name in TC are called "jsessionid" and I doubt they're called that way in IIS. But, I think it's still possible in general, though you'll have to do it by yourself at applications level. It won't be easy, but if you really need it... > Even those answers will help me. > > Thanks > > Paul > Anton -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
