I got my custom Conduit setup and thought a custom Destination would be "easy" to write, but after reading through Http/Local/JMS transport source code, I ran headlong into a wall upon trying to implement my own custom Destination. I would appreciate all insights into the following 2 issues:
1. AbstractDestination versus AbstractMultiplexDestination, when to use what? 2. How do I deliver the SOAP message to CXF such that it will invoke the right bean? Below is the Spring snippet that I use to expose my service. How do I setup my custom Destination such that CXF will invoke the organizerService bean? <simple:server id="organizerWS" serviceClass="com.acme.organizer.services.OrganizerService" address="/organizerService"> <simple:serviceBean> <ref bean="organizerService"/> </simple:serviceBean> <simple:dataBinding> <bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" /> </simple:dataBinding> </simple:server> All help would be greatly appreciated! Thanks...
