What's the simplest way to support Expect: 100-continue requests in a servlet
running on Tomcat 6?

My current solution is to look for the "expect" header, check whether its
value is "100-continue" and if it is, then I get a BufferedReader from the
request [request.getReader()] and dump the contents into a String. I then
parse that String into a parameter Map.

Now, this does work, but it feels like I am doing work that Tomcat should be
handling transparently. Am I missing something here?

Thanks,

Nathan
-- 
View this message in context: 
http://www.nabble.com/How-to-handle-Expect%3A-100-continue-tp21440164p21440164.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to