It doesn't look like an internal server error to me; the exception is
originally coming from the _jspService method, which contains the code
generated from your JSP. I recommend looking at the source of the generated
servlet (_MyJSP_jsp.java; it'll be in the cache directory, which is called
ClassCache under the server directory in the version of IPlanet that I've
used). See what's on line 97 and compare that to the JSP. I think the
problem is in your code somewhere.

--Jim Preston


-----Original Message-----
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Shari Fletcher
Sent: Wednesday, August 09, 2000 1:05 PM
To: [EMAIL PROTECTED]
Subject: Re: Okay, I Give Up.


Thank you Jim -- my directory structure was off-base.  After correcting
this, my page can now find my classes.

When I attempt to reference a method on my bean --- I am now getting this
error:

[09/Aug/2000:10:43:13] failure (  760): Internal error: exception thrown
from the servlet service function (uri=/MyJSP.jsp):
javax.servlet.ServletException, Stack: javax.servlet.ServletException
        at
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:384)
        at _MyJSP_jsp._jspService(_MyJSP_jsp.java:97)
        at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:826)
        at
com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner.jav
a:502)

This looks internal to iPlanet, maybe?

JSP Code:

<jsp:useBean
  id="organization"
  class="comp.gtc.membership.organization.web.OrganizationWebImpl"
  scope="session"
/>
(snip -- HTML code)
</H2><P><%=organization.getName("1000")%></P>
<BR>
</BODY>
</HTML>

Any thoughts are appreciated!!

Shari

===========================================================================
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