Hi,
I have two services I am testing, say halloTest and marshalingTest.
Both are configured in spring like this (using dynamic wsdl generation /
jaxws) :
<jaxws:endpoint id="marshalingTestService"
implementor="test.MarshalingTestServiceImpl"
address="/MarshalingTest">
<jaxws:serviceFactory>
<bean
class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"/>
</jaxws:serviceFactory>
</jaxws:endpoint>
When running tests against those services, the test of the second
service always fails: All calls marshal the parameter to null.
When I remove the first service completley from the spring
configuration, the test for the second one passes ok.
Any Idea why is this happening?
Cheers,
Ron