使用CXF端点中的架构验证,从Camel route到CXF Endpoint实施JMS queue。
在CXF端点中启用验证:
/* Set endpoint properties */
Map<String, Object> propertiesMap = new HashMap<String, Object>();
propertiesMap.put("schema-validation-enabled", "true");
/* Create endpoint */
CxfEndpoint cxfEndpoint = new CxfEndpoint();
cxfEndpoint.setWsdlURL("wsdl/input.wsdl");
cxfEndpoint.setDataFormat(DataFormat.CXF_MESSAGE);
cxfEndpoint.setProperties(propertiesMap);
cxfEndpoint.getInInterceptors().add(new FaultInterceptor());
骆驼路线:
from(cxfEndpoint)
.routeId("INPUT_ROUTE")
.to("jms:foo.bar");
CXF拦截器:
public class FaultInterceptor extends AbstractSoapInterceptor {
private static final Logger LOGGER = Logger.getLogger(FaultInterceptor.class);
public FaultInterceptor() {
super(Phase.UNMARSHAL);
}
public void handleMessage(SoapMessage message) throws Fault {
LOGGER.info("handleMessage=" + message.getExchange().getInMessage());
}
@Override
public void handleFault(SoapMessage message) {
Fault fault = (Fault) message.getContent(Exception.class);
LOGGER.info("handleFault='" + fault + "'");
/* Add some header property that says the message is invalid */
}
}
如果我发送有效的SOAP消息,则可以正常工作。如果我发送无效的SOAP消息,handleFault
方法将启动,记录错误以及所有错误。
对于无效的SOAP消息场景,是否可以使用handleFault
方法记录错误并仍然将无效消息路由到JMS队列?
这是我添加到端点的唯一拦截器。
答案 0 :(得分:0)
你不能做一个try / catch语句,因为错误发生在n#34;来自&#34;子句。
但是,您可以使用Dead Letter Channel。
errorHandler(deadLetterChannel("jms:foo.bar.invalid"));
from(cxfEndpoint)
.routeId("INPUT_ROUTE")
.to("jms:foo.bar");