On Thu August 13 2009 5:10:08 am Gabo Manuel wrote: > Hi Guys, > > Just want to check if there is the possibility of having multiple > serviceBean tags under a jaxws:server tag or if there is a way to > configure multiple jaxws:endpoint tags in a single location.
There isn't an "easy" way to do this. I'm not even sure you CAN do this via straight spring config. You can look at: https://svn.apache.org/repos/asf/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/versioning/ to kind of get an idea of what needs to be done. Basically, you need to enable the multiplexing with the property on the jaxws:endpoint/jaxws:server tags. That will allow multiple endpoints to use the same URL. However, you would need to write an interceptor that would somehow chose the correct endpoint and somehow get that registered on the MultiplexEndpointObserver. Not sure quite how to do that in the spring config. Basically, it's definitely NOT a suggested thing to do. -- Daniel Kulp [email protected] http://www.dankulp.com/blog
