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

Reply via email to