Hi
If you can access NotFoundException then what you can do next is to do
ErrorInfo errorInfo = exception.getResponse().readEntity(ErrorInfo.class)
where ErrorInfo is a custom class capturing a JSON error response, you'd
also need to register Jackson or other provider to get it converted. Or
read it as String.class and parse manually
HTH, Sergey
On 02/11/15 16:15, Steve Huston wrote:
I put this up on stackoverflow... if you have cxfrs expertise, could you please
read this?
How to access payload from REST 404 response in Camel cxfrs?
http://stackoverflow.com/q/33445686/240342?sem=2
Thanks,
-Steve