My project has multiple web services in the same configuration; we divide up our services into different interface/class combinations depending on the type of service. (I’m sure others do too?)
I finally realized what I was missing with the Aegis configuration – a <jaxws:serviceFactory> tag within the :endpoint tag. So I added the :serviceFactory tag to all of my :endpoint’s. Now, however, there’s actually only one service available – that of the first :endpoint in the configuration; all other URL’s point to the same exact service. I figured that meant I needed to have multiple service factories, so I did this; the JaxWsServiceFactoryBean <bean> tag, repeated once for each service, with only the beanId changed. This doesn’t make sense to me; is there another way to do this such that each bean gets it’s own instance of a factory? -- View this message in context: http://www.nabble.com/Multiple-services-in-same-Spring-config-tp14563101p14563101.html Sent from the cxf-user mailing list archive at Nabble.com.
