[EMAIL PROTECTED] wrote:

> As I understand it, by the time you call getInputStream(), the user's POST
> request is already entirely in the server's memory space, or it has been
> written to disk. This data isn't consumed when you read() it, so why can't
> you get another InputStream over it?

No. At the time when getInputStream() is called, the request data is read up
to the beginning of the file, or form field. The InputStream returns the
file, or form field, after which the request data is positioned at the end
of the file, or form field.


Jochen


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to