My initial implementation (using crystal reports for eclipse ver 1.0.4) worked fine and the reports were being displayed. But after my move to use the BOE Crystal jars - I am not able to render the report on-screen.
I get the Object doesn't support this property or method javascript error when rendering report on-screen.
This error only seems to show under Internet Explorer, In Firefox no error is shown and it is not rendered, but using firebug I noticed it calling javascript but nothing is displayed.
crystalimagehandler.jsp was a file under crystalreportviewers folder.
But the BOE version has the CrystalReportViewerServlet which I have associated in my web.xml
Web.xml
<context-param>
<param-name>crystal_image_uri</param-name>
<param-value>crystalreportviewers</param-value>
</context-param>
<context-param>
<param-name>crystal_image_use_relative</param-name>
<param-value>webapp</param-value>
</context-param>
<context-param>
<param-name>crystal_servlet_uri</param-name>
<param-value>/CrystalReportViewerHandler</param-value>
</context-param>
<servlet>
<servlet-name>CrystalReportViewerServlet</servlet-name>
<servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CrystalReportViewerServlet</servlet-name>
<url-pattern>/CrystalReportViewerHandler</url-pattern>
</servlet-mapping>
Edited by: jam mend on Jan 28, 2009 2:04 AM