I'm trying to figure out if I'm going about this the wrong way (which I'm sure I am)... I have a cxfse service that I'm using as an abstraction to several third party related services. To do this, I generated a CXF client for a 3rd party service and attempt to invoke it from my service. The problem is, I get this error:
org.apache.cxf.phase.PhaseInterceptorChain doIntercept INFO: Interceptor has thrown exception, unwinding *now* org.apache.cxf.interceptor.Fault: *No* *conduit* *initiator* *was* *found* * for* *the* *namepsace* http://schemas.xmlsoap.org/soap/http. at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:85) at org.apache.cxf.jaxws.JAXWSMethodInvoker.invoke(JAXWSMethodInvoker.java:82) at org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:56) at org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run( ServiceInvokerInterceptor.java:56) at org.apache.cxf.workqueue.SynchronousExecutor.execute( SynchronousExecutor.java:37) at org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage( ServiceInvokerInterceptor.java:87) at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept( PhaseInterceptorChain.java:206) Now, I know what the solution is to it, but the problem is.. I already have my client configured correctly. When I invoke my client (it's a maven 2 project) outside of servicemix it's fine, but when I have my service bundle it and try to use it, I get that error. I did notice that the cxfse component is missing some of the jetty jars which I initially thought might be the problem. I included them but I still have the error. Is there a better way if I have a cxf client I generated to use it inside of my service?
