Hi ,
The application is working fine if i dont enable this feature but when i
enable coloc i get :
Caused by: javax.xml.ws.soap.SOAPFaultException: No binding operation info
while invoking unknown method with params unknown.
at
org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:155)
at $Proxy250.sendEmail(Unknown Source)
at
org.ihc.esm.service.model.EnterpriseMonitoringServiceModel.auditEvent(EnterpriseMonitoringServiceModel.java:51)
at
org.ihc.esm.service.impl.EnterpriseServiceMonitoringServiceImpl.publishAuditEvent(EnterpriseServiceMonitoringServiceImpl.java:48)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at
org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(AbstractInvoker.java:180)
at
org.apache.cxf.service.invoker.AbstractInvoker.invoke(AbstractInvoker.java:96)
... 17 more
What i am trying to do is i have a service that calls two other services
which are published on local transport.
<jaxws:endpoint id="jmxPublisherServiceEPlocal"
implementor="#jmxPublisherServiceImpl"
address="local://jmxPublisherService">
</jaxws:endpoint>
<jaxws:endpoint id="emailServiceEPlocal"
implementor="#emailServiceImpl"
address="local://emailServiceService">
</jaxws:endpoint>
The 3 service definitions are :
EnterpriseMonitoringService{
@WebMethod
@Oneway
public void publishEvent(@WebParam(name = "message")Message message) ;
}
JmxPublisherService {
@WebMethod
@Oneway
public void publishEvents(@WebParam(name = "auditstatdata")Message
message) ;
}
EmailService{
@WebMethod
@Oneway
public void sendEmail(Message message)
}
So the same message object is passed to the other 2 services. Please let me
know if i am doing something unusual any help is highly appreciated.
Thanks
--
View this message in context:
http://cxf.547215.n5.nabble.com/Enabling-coloc-feature-is-causing-SOAPFaultException-No-binding-operation-info-while-invoking-unknow-tp5730503.html
Sent from the cxf-user mailing list archive at Nabble.com.