Related JSPs
hello all
I have created a web application and it contains a jsp named abc.jsp.I am calling a java program myjava.java from within abc.jsp.Now myjava.java class extends another class extended.java.
This extended.java class is inside a jar file named myjar.jar.
The abc.jsp is compiled fine but at runtime when i call abc.jsp it gives
"unable to compile jsp" error and states that it could not find extended.java class.Can anyone please give some idea?Is it that any jar that is reference HAS to be placed in the web-inf/lib folder?Currently I am noy having extended.jar in lib folder.It is located in another project in my workspace.

