I have the strangest problem.
I have a small web application that I wrote using a mix of JSP pages and Java Beans. In my index page I create the bean by using the following syntax:
<jsp:useBean id="Visitor" class="com.safeguard.safeweb.beans.VisitorBean" scope="session" />
Then in my last page when the user loggs off I use the following line:
session.removeAttribute("Visitor"
;
Then when the user goes back to the index page it re-instanciates the Visitor bean again and the cycle continues.
This works perfectly when I use an XP or Windows 2000 server. But then when I put the same exact application on NT it crashes on the 2nd time the pages are used.
I am using Jakarta Tomcat 4.1.18 with Java 1.4.
Why would this work on XP and 2000, but not NT4? It doesn't make sense!
Help, please!! Has anyone else encounterd a problem like this before?
Thanks in advance,
Rachel
I have a small web application that I wrote using a mix of JSP pages and Java Beans. In my index page I create the bean by using the following syntax:
<jsp:useBean id="Visitor" class="com.safeguard.safeweb.beans.VisitorBean" scope="session" />
Then in my last page when the user loggs off I use the following line:
session.removeAttribute("Visitor"
Then when the user goes back to the index page it re-instanciates the Visitor bean again and the cycle continues.
This works perfectly when I use an XP or Windows 2000 server. But then when I put the same exact application on NT it crashes on the 2nd time the pages are used.
I am using Jakarta Tomcat 4.1.18 with Java 1.4.
Why would this work on XP and 2000, but not NT4? It doesn't make sense!
Help, please!! Has anyone else encounterd a problem like this before?
Thanks in advance,
Rachel