I have been playing with Cxf trying to get to know its internals, and have
started from JBI server-side connector, which maps WS to JBI and vice versa.
I was trying to emulate that exact process, basically tried to do this:
-Client invokes greetMe from wsdl_first example that ships with Cxf binary
-Server captures the message, invokes my custom object that flips the string
and returns it back to the client
 (I dont use JBI but rather start barebone Cxf server manually with my logic
and interceptors)

However, its not working. I have gone step by step process copying and
adjusting the JBI implementation, making sure it matches as close as
possible to my test example, but server always returns null to the client,
and more over, in InvokerInterceptor when printing the received message it
is always empty like following:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
          <soap:Body
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"/>
</soap:Envelope>

though client definitely sends non-empty string.

Are there any links or tutorials on this matter, or perhaps some other
implementation besides JBI I could take a look at? Have scanned official
site and user mailing list but could not find it. 

Its definitely my mistake somewhere, so any tips appreciated.

Thanks
-- 
View this message in context: 
http://www.nabble.com/Cxf-server-side-integration-tp15411882p15411882.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to