I have finnaly solved the problem with a little help from a colleague. The problem was the adapter class I specified in the spring-ws config:
the second bean declaration I had should not be there: once I took this out it worked fineCode:<bean id="xmlbeansMarshaller" class="org.springframework.oxm.xmlbeans.XmlBeansMarshaller" /> <bean class="org.springframework.ws.server.endpoint.adapter.MarshallingMethodEndpointAdapter"> <property name="marshaller" ref="xmlbeansMarshaller" /> <property name="unmarshaller" ref="xmlbeansMarshaller" /> </bean>
I can't remember where I took the example from, but hopefully if anyone else does the same they will end up on this thread and get the answer quickly....
Good luck![]()



Reply With Quote