Yes, it was actually the JDBC-OBDC bridge that was causing the problem. When
I switched to a pure Java JDBC driver the problem disappeared. Are you using
the bridge?

-----Original Message-----
From: Howard Lee [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 16, 2000 6:49 PM
To: Scott Evans
Subject: RE: [JSP-INTEREST] Tomcat crashes on
RequestDispatcher.forward()


Have you solved this problem? What was causing it? Thank you very much.

howard

-----Original Message-----
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Scott Evans
Sent: Monday, April 03, 2000 8:39 AM
To: [EMAIL PROTECTED]
Subject: [JSP-INTEREST] Tomcat crashes on RequestDispatcher.forward()


Java.exe crashes (thus killing the web server with no exceptions thrown)
from the following code at the end of my controller servlet's doGet()
method:

if ( jspURI != null ) {
  RequestDispatcher rd = sc.getRequestDispatcher(jspURI);
  if (rd != null) rd.forward(request, response);
  else System.out.println("Resource at URI " + jspURI + " not found.");
}

Any ideas?

I'm using WinNT 4.0 with JDK1.2.2 and Tomcat 3.0.

thanks,

Scott Evans

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to