I'm totally new to Apache Camel, after finished the "Camel in Action", I am still not so clear about a basic function. Is there any way the set a message to be a fault message without injecting the exchange in bean method.
Here I can provide a example:
class HttpBean{
public void parseIP(@Properties Map properties,@XPath("//ip") String ip){
properties.put("IP", ip);
}
}
A method named "parseIP" is designed to parse ip in the body using xpath and save its value in a property map. But if there's no ip tag in body at all, I want to create a fault message and terminate the process(Not just throw a exception which will be treated as a recoverable error, Here I want a unrecoverable error). To achieve this goal, I can use the following code:
class HttpBean{
public void parseIP(@Properties Map properties,@XPath("//ip") String ip, Exchange exchange){
if(ip == null){
exchange.getIn().setFault(true);
exchange.getIn().setBody("Ip is missing");
}
properties.put("IP", ip);
}
}
But is this the best solution? Because once I inject an exchange into a bean method, I think it's not different than a camel processor and I lose most of its advantage. A bean in camel can finish its own work without using any Camel specific API, but once the exchange is injected, the advantage is gone.
Someone can help me with the question? Thanks a lot.
