I want to build a system made by several WebServices that exchange SOAP messages through Servicemix. These WSs are not local, but they are remote. So my idea is providing Servicemix as a service itself, and all the others will send message to it. It will be Servicemix to deliver soap messages to the right Service, log and notify the success/fail of the delivery.
Is this doable? Is this a correct use of Servicemix? I can't find a good example or tutorial with this configuration.
I can build WSs easily starting from a wsdl, using the Maven archetype
servicemix-cxf-wsdl-first-osgi-bundle
and they can be deployed on Servicemix... but they will be all local! I want to make remote WSs exchanging messages through a shared bus. Thank you
Sure, this is essentially the pattern for ServiceMix. Much of what you are looking for in terms of mediation and routing is realized through Apache Camel. You would need to host the remote web services in a separate web container, such as Tomcat or Jetty. Next, you would implement service endpoints as OSGi bundles that are deployed to ServiceMix. These OSGi bundles expose your service interface. When a SOAP request comes in to the OSGi bundle endpoint, you can then use Camel routing rules to route the SOAP message to the appropriate remote web service endpoint.
For some examples of this, I recommend checking out the JBoss Fuse documentation:
http://www.jboss.org/products/fuse/resources/
Fusesource used to be a support organization around ServiceMix; however, they have since been acquired by RedHat. You will find much better documentation and examples over the ServiceMix documentation itself.