Re: Re: FW: HttpServletResponse.sendError - missing message in error page

2018-07-30 Thread Michael Osipov
> [...] > > “It is implied but it could be clearer.” > > [...] > > I agree that default ErrorReportValve is not something that has to be > backward compatible as the apps should have provided their own. Yet, > we were using the default as it was working very well and was covering > our needs.

Re: FW: HttpServletResponse.sendError - missing message in error page

2018-07-27 Thread Emil Alexandroff
> > -Original Message- > From: Mark Thomas > Sent: 26 юли 2018 г. 19:04 > To: Tomcat Users List > Subject: Re: HttpServletResponse.sendError - missing message in error page > > On 26/07/2018 13:46, Assia Djambazova wrote: > > Hello, >

Re: HttpServletResponse.sendError - missing message in error page

2018-07-26 Thread Mark Thomas
On 26/07/2018 13:46, Assia Djambazova wrote: Hello, I noticed that when using HttpServletResponse.sendError in Tomcat 7.0.90 with string message the message is no longer shown as the response is displayed. I reproduce this with request to simple servlet: *public void doGet(HttpServletReq

Re: HttpServletResponse.sendError - missing message in error page

2018-07-26 Thread Michael Osipov
> Hello, > > I noticed that when using HttpServletResponse.sendError in Tomcat 7.0.90 > with string message the message is no longer shown as the response is > displayed. > > I reproduce this with request to simple servlet: > > > > *public void doGet(HttpServletRequest request, HttpServlet

HttpServletResponse.sendError - missing message in error page

2018-07-26 Thread Assia Djambazova
Hello, I noticed that when using HttpServletResponse.sendError in Tomcat 7.0.90 with string message the message is no longer shown as the response is displayed. I reproduce this with request to simple servlet: *public void doGet(HttpServletRequest request, HttpServletResponse response) thr