Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to create a "job flow": share a webservice with tESBProvivedResponse and after the tESBProviderResponse I would like to run an other job with tRunJob. You can see the architecture below:
After publishing the webservice, I try to check the wsdl, and I will encounter this error:
java.lang.NoSuchMethodError: org.codehaus.stax2.ri.EmptyIterator.getInstance()Ljava/util/Iterator; at com.ctc.wstx.util.DataUtil.emptyIterator(DataUtil.java:46) at com.ctc.wstx.sw.OutputElementBase.getPrefixes(OutputElementBase.java:361) at org.apache.cxf.staxutils.StaxUtils.writeStartElement(StaxUtils.java:811) at org.apache.cxf.staxutils.StaxUtils.copy(StaxUtils.java:758) at org.apache.cxf.staxutils.StaxUtils.copy(StaxUtils.java:722) at org.apache.cxf.staxutils.StaxUtils.copy(StaxUtils.java:648) at org.apache.cxf.wsdl11.SchemaSerializer.writeXml(SchemaSerializer.java:58) at org.apache.cxf.wsdl11.SchemaSerializer.marshall(SchemaSerializer.java:49) at com.ibm.wsdl.xml.WSDLWriterImpl.printExtensibilityElements(Unknown Source) at com.ibm.wsdl.xml.WSDLWriterImpl.printTypes(Unknown Source) at com.ibm.wsdl.xml.WSDLWriterImpl.printDefinition(Unknown Source) at com.ibm.wsdl.xml.WSDLWriterImpl.writeWSDL(Unknown Source) at com.ibm.wsdl.xml.WSDLWriterImpl.getDocument(Unknown Source) at org.apache.cxf.frontend.WSDLGetUtils.writeWSDLDocument(WSDLGetUtils.java:705) at org.apache.cxf.frontend.WSDLGetUtils.getDocument(WSDLGetUtils.java:151) at org.apache.cxf.frontend.WSDLGetInterceptor.getDocument(WSDLGetInterceptor.java:129) at org.apache.cxf.frontend.WSDLGetInterceptor.handleMessage(WSDLGetInterceptor.java:77) at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267) at org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(JettyHTTPDestination.java:247) at org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(JettyHTTPHandler.java:79) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1182) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1116) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:213) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:134) at org.eclipse.jetty.server.Server.handle(Server.java:534) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:320) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:273) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:95) at org.eclipse.jetty.io.SelectChannelEndPoint$2.run(SelectChannelEndPoint.java:93) at org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.executeProduceConsume(ExecuteProduceConsume.java:303) at org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.produceConsume(ExecuteProduceConsume.java:148) at org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.run(ExecuteProduceConsume.java:136) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:671) at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:589) at java.lang.Thread.run(Thread.java:748)
In the tRunJob I have these components:
In the tWebservice componenet I call this webservice:
http://www.dneonline.com/calculator.asmx?WSDL
I have Talend Open Studio for ESB 7.1.1, and win10 os.
Any idea what did I wrong?
UPDATE:
I just recognised a detail: this error occures also, if I don't use tRunJob but use tWebService. I don't know what causes this behaviour, but if I use tESBProviderRequest and Response with tWebservice I will encounter this error.