On Wednesday 01 December 2010 4:26:22 am Jürgen CXF User wrote: > Hello, > I want to know if it is possible to send SOAP web service request parallel > with different configurations. With different configuration I mean one > request with reliable messaging protocol and the other request un-reliable. > I tested that already but I recognized that each time I send out an request > I have to call the bus.shutdown() method so that the different configured > request could be successfully processed. But I am uncertain if this is the > right way to do that to shutdown the cxf bus each time. > Have someone experience in that topic? > Thanks in advance for your support
If you tie the configuration to a particular client, and not the bus, it should definitley be possible. You could have a separate "RM" instance of the client and a non-RM instance and use which one appropriately. -- Daniel Kulp [email protected] http://dankulp.com/blog
