Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.1.5
-
None
Description
The handling of question marks in the URI has already been fixed in trunk, but needs to be applied to the 1.1.x branch.
pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
. .
//This is a list of characters that need to be encoded to be protected
//The ? is necessary to protect URI's with a query portion that is being passed as a parameter
private static final String[][] ENCODINGS = new String[][] {
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
new String[]
,
};
Note, the last 3 encodings above were added in trunk but are missing in 1.1.x.