[
https://issues.apache.org/jira/browse/FILEUPLOAD-144?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vera Mickael updated FILEUPLOAD-144:
------------------------------------
Description:
When parsing a request with the streaming API, some parameters loose their
values. I can easily reproduce the problem when a lot of parameters are
submitted (about 400 in a table). My code is as follows :
final FileItemStream itemStream = anItemIterator.next();
final String fieldName = itemStream.getFieldName();
System.out.print("Field " + fieldName);
InputStream stream = itemStream.openStream();
final String value = Streams.asString(stream, "UTF-8");
The last statement sometimes returns a value and sometimes not. Sometimes I can
retreive all parameters, sometimes I loose 3 or 4 parameters. I reproduced the
problem on two computers. I have a very small application with a servlet of 69
lines that reproduces the problem, the project is attached to this issue.
was:
When parsing a request with the streaming API, some parameters loose their
values. I can easily reproduce the problem when a lot of parameters are
submitted (about 400 in a table). My code is as follows :
final FileItemStream itemStream = anItemIterator.next();
final String fieldName = itemStream.getFieldName();
System.out.print("Field " + fieldName);
InputStream stream = itemStream.openStream();
final String value = Streams.asString(stream, "UTF-8");
The last statement sometimes returns a value and sometimes not. Sometimes I can
retreive all parameters, sometimes I loose 3 or 4 parameters. I reproduced the
problem on two computers. I have a very small application with a servlet of 69
lines that reproduces the problem.
add attachment
> Parameters values are lost
> --------------------------
>
> Key: FILEUPLOAD-144
> URL: https://issues.apache.org/jira/browse/FILEUPLOAD-144
> Project: Commons FileUpload
> Issue Type: Bug
> Affects Versions: 1.2
> Environment: JBoss 4 / XP / Servlet / both Firefox and IE
> Reporter: Vera Mickael
> Priority: Critical
> Attachments: test.fileupload.zip
>
>
> When parsing a request with the streaming API, some parameters loose their
> values. I can easily reproduce the problem when a lot of parameters are
> submitted (about 400 in a table). My code is as follows :
> final FileItemStream itemStream = anItemIterator.next();
> final String fieldName = itemStream.getFieldName();
> System.out.print("Field " + fieldName);
> InputStream stream = itemStream.openStream();
> final String value = Streams.asString(stream, "UTF-8");
> The last statement sometimes returns a value and sometimes not. Sometimes I
> can retreive all parameters, sometimes I loose 3 or 4 parameters. I
> reproduced the problem on two computers. I have a very small application with
> a servlet of 69 lines that reproduces the problem, the project is attached to
> this issue.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.