Hell0 All,
I am trying to create an application in JSP which inturn calls a java file.
However when i execute the JSP page(using Tomcat webserver) i am getting an error which says...
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: -1 in the jsp file: null
Generated servlet error:
[javac] Since fork is true, ignoring compiler setting.
[javac] Compiling 1 source file
[javac] Since fork is true, ignoring compiler setting
I think the following line in the JSP page is the one which causes the problem:
<jsp:useBean id="MATRIX" scope="page" class="MatrixBlast.MatrixBlastC" />
MatrixBlastC is the name of the java file/class i am having.
if i take this line off in the jsp file...i get an o/p page...however i need to call the java file too for the program to work.
Kindly suggest how do i resolve this issue.
Thanks!
Regards,
Karthik.
I am trying to create an application in JSP which inturn calls a java file.
However when i execute the JSP page(using Tomcat webserver) i am getting an error which says...
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: -1 in the jsp file: null
Generated servlet error:
[javac] Since fork is true, ignoring compiler setting.
[javac] Compiling 1 source file
[javac] Since fork is true, ignoring compiler setting
I think the following line in the JSP page is the one which causes the problem:
<jsp:useBean id="MATRIX" scope="page" class="MatrixBlast.MatrixBlastC" />
MatrixBlastC is the name of the java file/class i am having.
if i take this line off in the jsp file...i get an o/p page...however i need to call the java file too for the program to work.
Kindly suggest how do i resolve this issue.
Thanks!
Regards,
Karthik.