We might have found an issue with Jersey 1.1.5.1.
Our Tomcat 5.5.x web.xml specify :
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/exceptionGesture/index.jsp</location>
</error-page>
Our rest resources throw exceptions that have to be processed in the jsp
declared above.
Tha jsp does some operations that test the content of the
ServletRequest.
But with jersey 1.1.5.1 the ServletRequest is in an Illegal State.
It works fine with Jersey 1.1.3ea.
Thank you.
Patrick.