Hi Roland, Do you mean that: Servlet container will read all the "form data" (or parameter-value pairs) as soon as the request arrives at server? After that, request.getInputStream() can only get the information that left?
Could you tell me how I can get all the "untouched" inputStream before container steals parameter part? As you see, the purpose of my PreSend servlet only wants to "relay" everything to another servlet. Thanks a lot, Han Roland Weber wrote: > > Hello Han, > >>_As you said, because the container already read the body, the >>_request.getInputStream() gets nothing? >>_ >>_Then what is the purpose of request.getInputStream()? It is always empty >>_anyway. > > No, it's not always empty. Servlets can receive > other things than parameters. And they can receive > multipart-mime encoded parameters that the servlet > container will not decode. > > cheers, > Roland > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/postmethod-does-not-work-tf4719655.html#a13510467 Sent from the HttpClient-User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
