We have multiple RquestDspacter.forward() in a single JSP file. This JSP runs OK with JRun 3.0 but gives Error 500 (response has already been commited) with Web Sphere 3.4. Is there any restriction in WebSphere that we can have only 1 RequestDispatcher.forward() call in a single JSP?
Created May 7, 2012
Mathias Neuhaus
Add a return; after each forward, so only one gets executed in every call to the JSP.