How can I maintain sessions between IIS and Tomcat?

2002-09-24 Thread Luca Ventura
Hello everybody! I have installed Tomcat as plug-in of Internet Information Server (IIS) to support JSP/Servlet, using the ISAPI filter. So I can support ASP pages thanks to IIS and Servlets/JSP-pages thanks to Tomcat. All works well if I don't use sessions. In fact if I create an user-session

Re: How can I maintain sessions between IIS and Tomcat?

2002-09-24 Thread Matt Fury
Hi Luca, ASP and JSP (IIS, Tomcat) are too separate server side languages and runtimes, hence there is no way to have them talk to each other via a Session Object since they each store sessions in a different manner. You may pass variables back and forth between them via a normal HTML manner