You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@camel.apache.org by Coder One <co...@yahoo.com> on 2009/11/20 00:33:29 UTC

CXF SOAP over JMS and Camel

interface WebService
{
    String greeting();
}

class WebServiceImpl
{
   public String greeting()
  {
      return("Hello, world");
   }

}

Using CXF simple front-end, the client code just needs a reference the interface WebService and CXF will simply generate the stub/binding to allow the client to invoke the server side implementation.

However, I need to pipe in the Camel code in between at both end-points and intercept the call.  Is that possible at all?

[CXF-WebService Client] [Camel] [JMS] [Camel] [CXF-WebService Server]

Thanks