Hi,
I have a webapp that has been working fine for years in Tomcat 5,6 and earlier
releases of 7 up to 7.0.33.
Deployed the same app into Tomcat 8.0.20 and receiving the following errors in
the localhost log
Mar 26, 2015 10:52:15 AM org.apache.catalina.core.ApplicationDispatcher invoke
SEVERE: Servlet.service() for servlet jsp threw exception
java.lang.IllegalArgumentException: Page directive: invalid value for import
Mar 26, 2015 10:52:15 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [Faces Servlet] in context with path
[/WER] threw exception [An exception occurred processing JSP page /Tabpane.jsp
at line 379
376: function linkClicked(selectedEntid, linkclientId){
377: <%
378: com.ca.wso.beans.SearchObjects searchObjects1 =
(com.ca.wso.beans.SearchObjects)session.getAttribute("searchObjects");
379: ArrayList entIdList1 = searchObjects1.getEntIdList();
380:
381: //System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~The
entIdList in JSP PAGE is "+entIdList);
382:
The import hasn't changed in years in this jsp
%@ page import="com.ca.wso.beans.*" %>
<%@ page import="java.util.*"%>
Thanks for the help!