Hi, The behaviour is absolutely correct. The reason is the JSP sessions are created in Tomcat webserver context and your ASP sessions are created in IIS server context.The session sharing between the two different web server cntext is not possible by default.If you want to do that you have to have a custom solution for that. One solution may be create a webservice for using the crosscontext session.Hope it helps. ---------------- LOVE IS GOD ------------------- Mr. Rajarshi Ghosh Project Leader LearningMate A division of Educomp Datamatics Limited #16, 80 Feet Road, IV Block, Koramangala, Bangalore 560034 India Voice: 91-80-5501051/52/53/55 Ext: 118 Fax : 91-80-5501051/52/53/55 [EMAIL PROTECTED] www.learningmate.com ----- Original Message ----- From: "Luca Ventura" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 24, 2002 11:07 PM Subject: Tomcat and IIS
> 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 IIS and Servlets/JSP thanks to Tomcat. > All works well if I don't use sessions. In fact if I create a session > (object) when the user is in a > JSP page or in a servlet, and then I insert information in it (using > setAttribute() method of HttpSession class) , > the session object just created is not visible from an ASP page. The same > thing happens if I create > the session in an ASP page: the session will not visible in a JSP page. It > seems that IIS > and Tomcat can't exchange session information between them...why? > > I hope someone can help me. > > Thanks in advance! > > Luca > > =========================================================================== > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://archives.java.sun.com/jsp-interest.html > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.jsp > http://www.jguru.com/faq/index.jsp > http://www.jspinsider.com > > > =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
