By consulting the documentation, I came up with this code to handle an error
for messages sent to a jetty http endpoint:
onException(SchemaValidationException.class)
.handled(true)
.transform()
.simple("The format of the incoming message does not conform to the
specification.");
Everything works fine, except using "handled(true)" causes a 200 OK response
to be sent back to the client. When I use "handled(false)" a 500 response
is returned, but I lose my custom error message.
Is there any way to return a 500 error but keep the nice error message?
-JF
--
View this message in context:
http://old.nabble.com/Default-error-handler%2C-changing-HTTP-response-code-tp27721146p27721146.html
Sent from the Camel - Users mailing list archive at Nabble.com.