#
coyoteResponse.getOutputStream.ise=getWriter() has already been called for this response
coyoteResponse.getWriter.ise=getOutputStream() has already been called for this response
+coyoteResponse.reset.ise=Cannot call reset() after response has been committed
coyoteResponse.resetBuffer.ise=Cannot reset buffer after response has been committed
coyoteResponse.sendError.ise=Cannot call sendError() after the response has been committed
coyoteResponse.sendRedirect.ise=Cannot call sendRedirect() after the response has been committed
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.setBufferSize.ise"));
response.setBufferSize(size);
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.resetBuffer.ise"));
response.resetBuffer();
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.reset.ise"));
response.reset();
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.sendError.ise"));
response.setAppCommitted(true);
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.sendError.ise"));
response.setAppCommitted(true);
if (isCommitted())
throw new IllegalStateException
- (/*sm.getString("responseBase.reset.ise")*/);
+ (sm.getString("coyoteResponse.sendRedirect.ise"));
response.setAppCommitted(true);
ignored when scanning jars for tag libraries. (kkolinko)
</fix>
<fix>
+ <bug>41709</bug>: Provide exception messages where no message is
+ provided currently for IllegalStateExcpetions triggered by calling
+ HttpServletResponse methods when the reponse is committed. (markt)
+ </fix>
+ <fix>
<bug>51509</bug>: Fix potential concurrency issue in CSRF prevention
filter that may lead to some requests failing that should not. (markt)
</fix>