I have a servlet which has processed a form (method POST) and now wants to invoke a JSP to render the response page. It puts a new attribute on the request object for the JSP to pick up. With Tomcat 3.2b8, an attempt is apparently made to re-read the POST data for the JSP (even though the JSP itself doesn't try to fetch any of the POST variables), and this results in a "Short Read" error. How should this scenario be handled? (I've run the same code under JRun, and either the error isn't fatal there, or it doesn't try to fetch POST data until the JSP actually asks for it, and since my JSP doesn't fetch any POST data, there's no problem.) Duane Morse, Eldorado Computing Inc., Phoenix AZ
