我正在尝试创建一个bundle并在ServiceMix中运行它。 我遇到了一个问题,感谢任何帮助。
从CXF端点生成SOAP消息,并使用Apache ServiceMix 5.0.0(Camel 2.12.3)针对XSD架构验证它们。
实现了一条路径,该路由从CXF端点生成消息,然后验证它们。
路线的configure
方法:
private RouteBuilder getInputRoute() {
SoapValidatingProcessor soapValidatingProcessor = new SoapValidatingProcessor();
inputRoute = new RouteBuilder() {
@Override
public void configure() throws Exception {
from(cxfEndpointInId())
.convertBodyTo(java.lang.String.class, "UTF-8")
.onException(org.apache.camel.ValidationException.class)
.log(LoggingLevel.INFO, LOG_NAME, "Invalid message received!")
.handled(true)
.stop()
.end()
.bean(soapValidatingProcessor).id("SoapHeaderValidatingProcessor")
.to("browse:foo")
}
创建了一个验证处理器:
public class SoapValidatingProcessor {
private final String SCHEMA = "schema.xsd";
public SoapValidatingProcessor() {
validatingProcessor = new ValidatingProcessor();
validatingProcessor.setFailOnNullHeader(false);
validatingProcessor.setFailOnNullBody(false);
}
@Handler
public void validate(Exchange exchange) throws Exception {
Resource validationSchema = context.getApplicationContext().getResource(SCHEMA);
validatingProcessor.setSchemaUrl(validationSchema.getURL());
validatingProcessor.loadSchema();
/* Creating a new SchemaFactory instance */
SchemaFactory xmlSchema = SchemaFactory
.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
validatingProcessor.setSchemaFactory(xmlSchema);
validatingProcessor.process(exchange);
}
}
Apache Camel ValidatingProcessor [1]在多线程中表现不佳。我正在aprox发送SOAP消息。间隔20毫秒,我得到以下异常。如果我将发送间隔增加到200ms以上,这一切都很好。
2014-07-11 17:11:47,404 | WARN | ult-workqueue-18 | PhaseInterceptorChain | ? ? | 129 - org.ap
ache.cxf.cxf-api - 2.7.10 | Application {http://ws.service}WSImplService#{http://foo.bar}Update has thrown exception, unwinding now
org.apache.cxf.interceptor.Fault: FWK005 parse may not be called while parsing.
at org.apache.camel.component.cxf.CxfConsumer$1.checkFailure(CxfConsumer.java:228)[181:org.apache.camel.camel-cxf:2.12.3]
at org.apache.camel.component.cxf.CxfConsumer$1.setResponseBack(CxfConsumer.java:206)[181:org.apache.camel.camel-cxf:2.12.3]
at org.apache.camel.component.cxf.CxfConsumer$1.syncInvoke(CxfConsumer.java:140)[181:org.apache.camel.camel-cxf:2.12.3]
at org.apache.camel.component.cxf.CxfConsumer$1.invoke(CxfConsumer.java:75)[181:org.apache.camel.camel-cxf:2.12.3]
at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run(ServiceInvokerInterceptor.java:58)[129:org.apache.cxf.cxf-api:2.7.10]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)[:1.7.0_45]
at java.util.concurrent.FutureTask.run(FutureTask.java:262)[:1.7.0_45]
at org.apache.cxf.workqueue.SynchronousExecutor.execute(SynchronousExecutor.java:37)[129:org.apache.cxf.cxf-api:2.7.10]
at org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(ServiceInvokerInterceptor.java:107)[129:org.apache.cxf.cxf-api
:2.7.10]
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:272)[129:org.apache.cxf.cxf-api:2.7.10]
at org.apache.cxf.phase.PhaseInterceptorChain.resume(PhaseInterceptorChain.java:242)[129:org.apache.cxf.cxf-api:2.7.10]
at org.apache.cxf.interceptor.OneWayProcessorInterceptor$1.run(OneWayProcessorInterceptor.java:144)[129:org.apache.cxf.cxf-api:2.7.1
0]
at org.apache.cxf.workqueue.AutomaticWorkQueueImpl$3.run(AutomaticWorkQueueImpl.java:428)[129:org.apache.cxf.cxf-api:2.7.10]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)[:1.7.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)[:1.7.0_45]
at org.apache.cxf.workqueue.AutomaticWorkQueueImpl$AWQThreadFactory$1.run(AutomaticWorkQueueImpl.java:353)[129:org.apache.cxf.cxf-ap
i:2.7.10]
at java.lang.Thread.run(Thread.java:744)[:1.7.0_45]
Caused by: org.xml.sax.SAXException: FWK005 parse may not be called while parsing.
at org.apache.xerces.jaxp.validation.Util.toSAXException(Unknown Source)[:]
我没有得到该异常的唯一方法是validate
方法是synchronized
,但我不希望这样。
我在这里看到[2]错误已经解决了。我试图为每条消息创建一个新的SchemaFactory [3]实例,但仍然没有运气。任何想法为什么我仍然得到错误?我做错了什么?
[2] https://issues.apache.org/jira/browse/CAMEL-6630
[3] http://docs.oracle.com/javase/6/docs/api/javax/xml/validation/SchemaFactory.html
谢谢!
答案 0 :(得分:2)
您的代码不是线程安全的。在您的SoapValidatingProcessor
中,您正在使用共享validatingProcessor
,同时修改其状态/配置(通过每次加载不同的架构)。
但是,模式在您的示例中不会更改。在这种情况下,您应该只配置一次处理器(通过在启动时加载模式)。
您的处理程序应该只调用不修改处理器状态的方法:
@Handler
public void validate(Exchange exchange) throws Exception {
validatingProcessor.process(exchange);
}
在处理任何交换之前,状态应该配置一次,例如:
public SoapValidatingProcessor(CamelContext context) {
validatingProcessor = new ValidatingProcessor();
validatingProcessor.setFailOnNullHeader(false);
validatingProcessor.setFailOnNullBody(false);
Resource validationSchema = context.getApplicationContext().getResource(SCHEMA);
validatingProcessor.setSchemaUrl(validationSchema.getURL());
validatingProcessor.loadSchema();
/* Creating a new SchemaFactory instance */
SchemaFactory xmlSchema = SchemaFactory
.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
validatingProcessor.setSchemaFactory(xmlSchema);
}
事实上,删除SoapValidatingProcessor
课程并将所有validatingProcessor
配置移至RouteBuilder.configure()
方法,然后直接使用validatingProcessor
,您可能会更好路由。