When my server receives incomplete xml it returns a 500 Internal Server Error back due to the default handling for java.lang.IllegalArgumentException. I can override the html page that is returned but I also need to override the error code and make it 400 to follow our documented spec. Is there a way to override the error code in JSF-2.0? We are using JAXB for the xml handling.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
I ended up using an ExceptionMapper like so:
|
|||
|
|
Depends on where it's been thrown and if it's wrapped in another exception. It's hard to give a perfect-fit answer based on the information provided as far. But to the point, to send a response error with the right status using JSF2, use
Or equivalently in a servlet filter, use
|
|||||
|