You have changed

<% to <%=


Thursday, November 9, 2006, 9:24:36 PM, you wrote:

FML> I am trying to modify the snoop.jsp that comes with Tomcat 5.5.20.  I
FML> have the following snippet in my jsp and it compiles fine:

FML>   <tr>
FML>     <td>Path info</td><td><%
FML> out.print(util.HTMLFilter.filter(request.getPathInfo())); %></td>
FML>   </tr>

FML> If I add the following before the above use of getPathInfo, I get syntax
FML> errors on the new code (the old code still does not report any errors):

FML>   <tr>
FML>     <td>Context path</td><td><%=
FML> out.print(util.HTMLFilter.filter(request.getContextPath())); %></td>
FML>   </tr>
FML>   <tr>
FML>     <td>Servlet path</td><td><%=
FML> out.print(util.HTMLFilter.filter(request.getServletPath())); %></td>
FML>   </tr>

FML> The error is:

FML>  org.apache.jasper.JasperException: Unable to compile class for JSP

FML>  An error occurred at line: 43 in the jsp file: /snp/snoop2.jsp
FML>  Generated servlet error:
FML>  Syntax error on token ";", delete this token

FML>  An error occurred at line: 46 in the jsp file: /snp/snoop2.jsp
FML>  Generated servlet error:
FML>  Syntax error on token ";", delete this token

FML> I have not changed anything from the default Jasper configuration.

FML> (Is this the best place to ask this kind of question?)

FML> Mitchell Fisher | Unisys Corp.


FML> ---------------------------------------------------------------------
FML> To start a new topic, e-mail: users@tomcat.apache.org
FML> To unsubscribe, e-mail: [EMAIL PROTECTED]
FML> For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Best regards,
 Dima                            mailto:[EMAIL PROTECTED]



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to