Author: remy.maucherat(a)jboss.com
Date: 2008-10-30 22:28:49 -0400 (Thu, 30 Oct 2008)
New Revision: 831
Modified:
trunk/build.properties.default
trunk/java/org/apache/catalina/authenticator/FormAuthenticator.java
trunk/webapps/docs/changelog.xml
Log:
- Port patch to restore query string encoding.
Modified: trunk/build.properties.default
===================================================================
--- trunk/build.properties.default 2008-10-30 14:26:53 UTC (rev 830)
+++ trunk/build.properties.default 2008-10-31 02:28:49 UTC (rev 831)
@@ -67,10 +67,10 @@
nsis.loc=${base-sf.loc}/nsis/nsis-2.40.zip
# ----- JBoss Native, version 2.0 or later -----
-jbossnative.home=${base.path}/jboss-native-2.0.4
+jbossnative.home=${base.path}/jboss-native-2.0.6
jbossnative.openssl=${jbossnative.home}/bin/META-INF/bin/windows/x86/openssl.exe
jbossnative.dlls=${jbossnative.home}/bin/META-INF/lib/windows/x86
-jbossnative.loc=http://www.jboss.org/downloading/?projectId=jbossweb&url=http://labs.jboss.com/file-access/default/members/jbossweb/freezone/dist/2.0.4.GA/jboss-native-2.0.4-windows-x86-ssl.zip
+jbossnative.loc=http://www.jboss.org/downloading/?projectId=jbossweb&url=http://labs.jboss.com/file-access/default/members/jbossweb/freezone/dist/2.0.6.GA/jboss-native-2.0.6-windows-x86-ssl.zip
# ----- Commons Daemon, version 1.0-Alpha or later -----
commons-daemon.home=${base.path}/commons-daemon-1.0.1
Modified: trunk/java/org/apache/catalina/authenticator/FormAuthenticator.java
===================================================================
--- trunk/java/org/apache/catalina/authenticator/FormAuthenticator.java 2008-10-30
14:26:53 UTC (rev 830)
+++ trunk/java/org/apache/catalina/authenticator/FormAuthenticator.java 2008-10-31
02:28:49 UTC (rev 831)
@@ -427,6 +427,8 @@
request.getCoyoteRequest().getParameters().recycle();
+
request.getCoyoteRequest().getParameters().setQueryStringEncoding(request.getConnector().getURIEncoding());
+
if ("POST".equalsIgnoreCase(saved.getMethod())) {
ByteChunk body = saved.getBody();
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2008-10-30 14:26:53 UTC (rev 830)
+++ trunk/webapps/docs/changelog.xml 2008-10-31 02:28:49 UTC (rev 831)
@@ -22,6 +22,9 @@
<update>
NSIS 2.40. (remm)
</update>
+ <update>
+ JBoss Native 2.0.6. (remm)
+ </update>
</changelog>
</subsection>
<subsection name="Catalina">
@@ -75,6 +78,9 @@
<bug>46085</bug>: Date handling in sessions should use int offsets,
and longs can get
corrupted. (remm)
</fix>
+ <fix>
+ <bug>46105</bug>: Set query string URI encoding when replaying
request. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">
Show replies by date