You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i've encountered a realy nasty misfeature of illegalstateexception in tomcat 7 with jsp includes.
"protected WriteStream QuercusServletImpl.openWrite(HttpServletResponse response)" tries to get an outputstream but the jsp-include implementation in tomcat 7 requieres the jsp-writer to be used.
since i cant currently use git i have included the fix below:
hi!
i've encountered a realy nasty misfeature of illegalstateexception in tomcat 7 with jsp includes.
"protected WriteStream QuercusServletImpl.openWrite(HttpServletResponse response)" tries to get an outputstream but the jsp-include implementation in tomcat 7 requieres the jsp-writer to be used.
since i cant currently use git i have included the fix below:
//------------------------------------------------------------------
protected WriteStream openWrite(HttpServletResponse response)
throws IOException
{
WriteStream ws;
}
//------------------------------------------------------------------
The text was updated successfully, but these errors were encountered: