I haven't done that before, but I suspect that configuration could be
done in your WAR file's web.xml[1].  Might multiple <servlet-mapping/>
elements to your two web service's SEI implementation classes solve the
problem?  Let us know if that works.

HTH,
Glen

[1] http://www.jroller.com/gmazza/date/20071019#step7


Am Mittwoch, den 06.02.2008, 14:22 -0800 schrieb JavaRunner:
> 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?

Reply via email to