Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 42510 invoked from network); 16 Jul 2004 10:08:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 16 Jul 2004 10:08:31 -0000 Received: (qmail 14325 invoked by uid 500); 16 Jul 2004 10:08:20 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 14269 invoked by uid 500); 16 Jul 2004 10:08:19 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 14254 invoked by uid 99); 16 Jul 2004 10:08:19 -0000 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [192.18.33.10] (HELO exchange.sun.com) (192.18.33.10) by apache.org (qpsmtpd/0.27.1) with SMTP; Fri, 16 Jul 2004 03:08:12 -0700 Received: (qmail 28099 invoked by uid 50); 16 Jul 2004 10:09:30 -0000 Date: 16 Jul 2004 10:09:30 -0000 Message-ID: <20040716100930.28098.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Cc: Subject: DO NOT REPLY [Bug 30141] New: - GET posting fails on JISAutoDetect Character Encoding X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=30141 GET posting fails on JISAutoDetect Character Encoding Summary: GET posting fails on JISAutoDetect Character Encoding Product: Tomcat 4 Version: 4.1.27 Platform: Sun OS/Version: Solaris Status: NEW Severity: Normal Priority: Other Component: Servlet & JSP API AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: j.banzhaf@jens.co.jp I took a look at similar reports, and I think this is different enough to warrant attention. Running on tomcat 4.1.27, submitting df.jsp as a POST gives output, but as a GET gives nothing. This is not the case for other character encoding types such as SJIS, ISO-whatever, but only JISAutoDetect. Please let me know what you think, thank you very much. =========dumbform.jsp========== <%@ page contentType="text/html; charset=iso-2022-jp" pageEncoding="iso-2022-jp" import = " java.io.* , java.net.* , java.lang.* , java.util.* , java.text.* , javax.servlet.* , javax.servlet.http.* , javax.servlet.jsp.* " session="true" %> <% request.setCharacterEncoding("JISAutoDetect"); %> <% String kee = ""; String valu = ""; Enumeration eeee = request.getParameterNames(); while ( eeee.hasMoreElements() ){ kee = (String)eeee.nextElement(); valu = request.getParameter(key); %> <%=kee%> <%=valu%>
<% } %> ============df.jsp============
--------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org