Re: CXF: Service Implementer could not be invoked

2012-12-12 Thread Willem jiang
The GreetServiceImpl will not be called as in the camel-cxf component, the invoker which could be used to invoke the method of implementer is replaced to send the message to camel route. That is why the greetProcessor is called. In this way we can bridge the CXF service with the camel route. -

Re: CXF: Service Implementer could not be invoked

2012-12-12 Thread santhosh
Ok for your requirement here is what you need to do.Create a jax-ws endpoint and drop into META-INF/spring. Create a file named whatever sensible in xml format.For demo lets assume the name is beans.xml.The contents of beans.xml would be http://www.springframework.org/schema/beans http://www.spr

Re: CXF: Service Implementer could not be invoked

2012-12-12 Thread Aki Yoshida
Isn't it your intention that you receive a soap message at the cxf endpoint and forward the message payload to your greetProcessor bean to process it? If you want to just call the service itself, you could have used just a CXF jaxws endpoint using this service impl class. Maybe you can explain mo