Remy,
So do agree that this is a bug then? Should I try to fix it? I have not tried
to access the CVS archives yet, and I don't know if I should be trusted
to make any changes anyway :-)
Mark
>Reading the URL parameters is done just above :
> // Parse any parameters specified in the query string
> String queryString = getQueryString();
> try {
> RequestUtil.parseParameters(results, queryString, encoding);
> } catch (Throwable t) {
> }
>
>This is for reading parameters in the body of the post. The test means that
>if the servlet accessed the stream, we should not attempt to parse the
>parameters.
>The test is a bit too strict (we could check if bytes have been read from
>the stream instead), but that's it.
>You should check if you don't call getInputStream in your servlet before
>calling getParameters.
>
>Remy