Hi Dave,
The bean is set as part of the request in the Servlet before forwarding to the JSP.
LQFPrime_DataBean pdbean = new LQFPrime_DataBean();
request.setAttribute("detailDataBean", pdbean);
In the bean the default constructor is:
public LQFPrime_DataBean() {
super();
}
But however in the JSP the first line which is
<jsp:useBean id="detailDataBean" scope="request" class="com.xyz.beans.LQFPrime_DataBean" />
where the JSP crashes and throws:
ServletInstan X Uncaught service() exception thrown by servlet {0}: {1}
"JSP 1.1 Processor"
org.apache.jasper.JasperException: Unable to compile class for JSP "/beans/lqfmodule/jsp/lqf_details_packaging.jsp" error: An error has occurred in the compiler; please file a bug report (
http://java.sun.com/cgi-bin/bugreport.cgi).
1 error
The stack trace does not point to a line number in specific.
Hope this helps..
Mukund