This is my third thread and so far I have received zero help from this forum, hope this time is different.
I have solve my previous problems by myself but I have a new one.
The JSP supposed to display de Crystal report I made is sending the following error when I call it:
The viewer was unable to find the resources required to render the report.
Please check the following to resolve the issue.
1. Verify that /crystalreportviewers12/ is accessible to your WebApp and is the correct path to the viewer resources.
2. You may customize this location by altering the crystal_image_uri and crystal_image_use_relative properties in the web.xml.
3. Validate that the file crv.js exists at /crystalreportviewers12/js/crviewer/crv.js.
I have check in other threads regarding this topic and I think I have followed all the suggestions I think.
All my web content is on the webApplication folder I have checked that the crystal reports folder is inside this folder:
My_Project/webApplication/crustalreportsviewers12
Also the crv.js exists in the specified path.
And here are the entrance I added to the web.xml file in WEB-INF
<context-param>
<param-name>crystal_image_uri</param-name>
<param-value>/crystalreportviewers12</param-value>
</context-param>
<context-param>
<param-name>crystal_image_use_relative</param-name>
<param-value>webApplication</param-value>
</context-param>
<servlet-mapping>
<servlet-name>CrystalReportViewerServlet</servlet-name>
<url-pattern>/CrystalReportViewerHandler</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>CrystalReportViewerServlet</servlet-name>
<servlet-class>com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet</servlet-class>
</servlet>
I even added the crystal-tags-reportviewer.tld file inside the WEB-INF directory
And I still getting that rendering error.
Anymore suggestions on what could be wrong?
I'm workin on MyEclipse 7.5, Tomcat 6.0 and Crystal Reports 2008
Thanks in advance.
Edited by: bsosaj on Jul 30, 2010 4:04 PM