On Mar 15, 2010, at 2:10 PM, Yury Luneff wrote:

Hi,

Have you overrided the ExceptionReport or even ExceptionRequestHandler ?

Regards,
Christophe Cordenier.

in security module from tapestry5.localhost.nu ()there is:
@InjectService("SpringSecurityExceptionFilter")
final SpringSecurityExceptionTranslationFilter springSecurityExceptionFilter)

where public class SpringSecurityExceptionTranslationFilter extends
       SpringSecurityFilter

as today i have turned off this module in a whole and the problem
persists, it is probably not the source of problem. Even if it is,
security there checks logged user if he can read logs and puts error
message otherwise and i don't receive any error message, just null.

In my project i haven't touched anything related to expectionreport
and such by myself and if i had, it would be the first place i watch
for fixes.



Yury,

I think that something is catching the exceptions and not rendering anything. Do you have any custom filters? My understanding is that this anti-pattern will break exception reporting in a filter:

try {
  return handler.service(request, response);
} catch (Exception e) {
  log.debug("i just silently broke something", e)
  //@bug: here, exception caught!
}

--
Robert Hailey



Reply via email to