MultipartRequestImpl incorrect parse filename with semicolon
------------------------------------------------------------
Key: JBSEAM-4822
URL:
https://issues.jboss.org/browse/JBSEAM-4822
Project: Seam 2
Issue Type: Bug
Affects Versions: 2.2.0.GA
Environment: Windows XP
Reporter: Krzysztof Borgul
Priority: Minor
When I uploaded file with semicolon in name,
org.jboss.seam.web.MultipartRequestImpl.parseParams incorrect parse header line:
Content-Disposition: form-data; name="form:fileUpload";
filename="x;a.txt"
It was split on four parts:
Content-Disposition: form-data
name="form:fileUpload"
filename="x
a.txt"
,but should be
Content-Disposition: form-data
name="form:fileUpload"
filename="x;a.txt"
The problem is in the regular expression used as split method parameter.
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira