Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 11072 invoked from network); 2 Feb 2009 22:44:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Feb 2009 22:44:00 -0000 Received: (qmail 70668 invoked by uid 500); 2 Feb 2009 22:43:53 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 70626 invoked by uid 500); 2 Feb 2009 22:43:53 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 70615 invoked by uid 99); 2 Feb 2009 22:43:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Feb 2009 14:43:53 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Feb 2009 22:43:52 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id ED954234C48D; Mon, 2 Feb 2009 14:43:31 -0800 (PST) From: bugzilla@apache.org To: dev@tomcat.apache.org Subject: DO NOT REPLY [Bug 46652] New: HttpServletRequest.getQueryString() always returns null X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Tomcat 6 X-Bugzilla-Component: Servlet & JSP API X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: java@leeclemens.net X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: dev@tomcat.apache.org X-Bugzilla-Target-Milestone: default X-Bugzilla-Changed-Fields: Message-ID: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Mon, 2 Feb 2009 14:43:31 -0800 (PST) X-Virus-Checked: Checked by ClamAV on apache.org https://issues.apache.org/bugzilla/show_bug.cgi?id=46652 Summary: HttpServletRequest.getQueryString() always returns null Product: Tomcat 6 Version: unspecified Platform: PC OS/Version: Windows XP Status: NEW Severity: major Priority: P2 Component: Servlet & JSP API AssignedTo: dev@tomcat.apache.org ReportedBy: java@leeclemens.net request.getQueryString() in a JSP always returns null. To reproduce: Create test JSP page, test.jsp, with scriptlet <% String qryStr = request.getQueryString(); if (qryStr==null) { out.writeln("Query String is null!); } else { out.writeln("Query String is: " + qryStr); } %> Type "http:////test.jsp?a=1&b=2" in your browser (IE 6 SP2) Query String is null! is displayed Expected result: Query String is: a=1&b=2 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org