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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

<B>JSP Reports Don't Work</B>

Status
Not open for further replies.

InsaneProgrammer

Programmer
Jan 17, 2001
44
0
0
US
I can't get my Oracle 9i JSP reports to run on Oracle 9iAS. I get the following error:
oracle.jsp.parse.JspParseException: Line # 1,
Error: java.lang.ClassNotFoundException: oracle.reports.jsp.ReportTagExtraInfo
at oracle.jsp.parse.JspDirectiveTaglib.loadTagLibFromTLD(JspDirectiveTaglib.java)
at oracle.jsp.parse.JspDirectiveTaglib.validateAttributes(JspDirectiveTaglib.java)
at oracle.jsp.parse.JspParseTagDirective.validateTagAttributes(JspParseTagDirective.java)
at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java)
at oracle.jsp.parse.JspParseTagDirective.parse(JspParseTagDirective.java)
at oracle.jsp.parse.JspParseTag.parseNextTag(JspParseTag.java)
at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java)
at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java)
at oracle.jsp.app.JspAppLoader.reloadPage(JspAppLoader.java)
at oracle.jsp.app.JspAppLoader.loadPage(JspAppLoader.java)
at oracle.jsp.app.JspAppLoader.getPage(JspAppLoader.java)
at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
at oracle.jsp.JspServlet.internalService(JspServlet.java)
at oracle.jsp.JspServlet.service(JspServlet.java)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
at org.apache.jserv.JServConnection.run(JServConnection.java:294)
at java.lang.Thread.run(Thread.java:484)

The first line of code in my report is <%@ taglib uri=&quot;WEB-INF/lib/reports_tld.jar&quot; prefix=&quot;rw&quot;%>[/blue] This line is generated automatically by Oracle Reports. Regular JSP pages work correctly. But anything I create with Oracle Reports errors. I'm fairly sure that something isn't configured correctly. Any help would be appreciated.

InsaneProgrammer.com
 
You should read about deploying JSP Reports. In fact you need to deploy some jar files with your JSP. Does your WEB-INF/lib directory contain reports_tld.jar? Bet it doesn't :)

Regards, Dima
 
So try to restart your server. Or check at least whether you have correct versionof that file and it contains oracle.reports.jsp.ReportTagExtraInfo class.

Regards, Dima
 
InsaneProgrammer,
I am facing the same problem, did u solve it?
Thanks,
 
tarzzy,

I have not solved the problem yet. Good luck.

InsaneProgrammer.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top