I must be missing something very simple. I've deployed a project with
multiple service classes. I had assumed that I would just add the service
definition to the cxf-servlet.xml file like this:
<simple:server id="serviceA" serviceClass="com.foo.service.Accounts"
address="/accounts">
<simple:serviceBean>
<bean class="com.foo.service.AccountsImpl" />
</simple:serviceBean>
</simple:server>
<simple:server id="serviceB" serviceClass="com.foo.service.Pricing"
address="/pricing">
<simple:serviceBean>
<bean class="com.foo.service.PricingImpl" />
</simple:serviceBean>
</simple:server>
When deployed (to Tomcat) only ServiceA is visible/available.
Obviously there's another way. What am missing?
--
View this message in context:
http://www.nabble.com/Multiple-Services-Question-tp15315098p15315098.html
Sent from the cxf-user mailing list archive at Nabble.com.