Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JSP Session beans with NT4

Status
Not open for further replies.

bunnyweb

MIS
Jan 13, 2003
42
IE
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=&quot;Visitor&quot; class=&quot;com.safeguard.safeweb.beans.VisitorBean&quot; scope=&quot;session&quot; />

Then in my last page when the user loggs off I use the following line:

session.removeAttribute(&quot;Visitor&quot;);

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top