You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/05/07 01:06:29 UTC

DO NOT REPLY [Bug 8708] - org.apache.jasper.JasperException: Unable to compile class for JSP

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8708>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8708

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





------- Additional Comments From edburns@acm.org  2002-05-06 23:06 -------
This page seems to work fine:

<%@page 
contentType="text/html; charset=utf-8"
language="java"
import="java.util.Enumeration"
%>


<%
Enumeration e = request.getParameterNames();
for (; e.hasMoreElements() ;)
{
	String n = (String)e.nextElement();
	String[] s = request.getParameterValues( n );
	for (int i=0; i<s.length; i++)
		out.print(n+" = "+s[i]+"<br>");
}
%>

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>