使用Interceptor进行Apache CXF端点验证

时间:2014-08-09 07:57:39

标签: web-services cxf apache-camel interceptor

我想做什么:

使用CXF端点中的架构验证,从Camel routeCXF 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队列? 这是我添加到端点的唯一拦截器。

我正在使用:

  • Apache ServiceMix 5.0.0
  • Apache Camel 2.12.3
  • Apache CXF 2.7.10

1 个答案:

答案 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");