Re:JSP Compilation problem
Quote:
Originally Posted by aniseed
This could be because the JSP file associated with a Frame may not have compiled on time to be referenced by JSP files from other Frames.
This is not the case. You get a JasperException when some exception is thrown during the JSP compilation/runtime and handled by the container. You should take a look into the server logs.
The order of compilation doesn't get messed up as you are assuming.
Hi aniseed,
Thanks for suggestion...
i have attached sample coding of the jsp compilation in my generated jsp file.
D:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\eFirstHelp\web\bot_jsp.java:52: ';' expected
javax.servlet.http.HttpSession sess=request.getSession(false);
if u lookout this code , ; expected.... but the code is perfectly good then why should i get this type of exception? if i access the same page in the another browser i did not get this exception. why?
Second problem:
D:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\eFirstHelp\web\bot_jsp.java:44: cannot resolve symbol
symbol : method +etAttribute (java.lang.String)
location: interface javax.servlet.ServletContext
java.lang.String str_jpath =(java.lang.String)application.getAttribute("jsp_path");
i did not understand what the error says..
can u help me out
Thanks