There is a dataBinding configuration in jaxws.xsd which used to parse the <jaxws:**> tag:

https://svn.apache.org/repos/asf/incubator/cxf/trunk/rt/frontend/jaxws/src/main/resources/schemas/jaxws.xsd

But it has not been implemented .  I will get it fixed today or tomorrow.

Use <jaxws:dataBinding> tag , you can configure the Aegis databinding to Endpoint directly and
you do not need to add the aegis databinding to ServiceFactory.


Regards

Jim

SBixby wrote:
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?

Reply via email to