Community
Participate
Working Groups
BIRT 2.6.1 IE 8 Tomcat 6 and Websphere 6 When using the WebViewerExample application, I get the following exception reported in the logs when Using IE (although the report renders fine). No errors are reported when using Chrome. I've done some debugging and discovered that the ViewerServlet is invoked when the browser calls back for *.js resources. org.eclipse.birt.report.exception.ViewerException: There is no report design object available. I've added the following to my version of org.eclipse.birt.report.servlet.ViewerServlet to remove the errors. Is this something you'd like to include in the base version? @Override public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException { if (!((HttpServletRequest)req).getRequestURL().toString().endsWith(".js")) { super.service(req, res); } } Regards, Josh.
Hi, I don't find any errors in IE or birt logs when deploy the WebViewerExample(2.6.1 release) on Tomcat 6.0, and preview sample reports in IE 8. Which error log did you meant in the description? And have you tried to clean the IE cache and preview the report again?
Since there is no response from the submitter, set as worksforme.