Hi there,

I'm trying to connect to a web service using JAXRPC and Spring and I'm using the JPetstore example as my reference application.

I'm getting a strange error saying:
The following exception was logged org.xml.sax.SAXException: Deserializing parameter '***name of my return type here***': could not find deserializer for type {***namespace***}***name of my return type here***

My return type from the web service call is a simple value object with a String member variable. I was under the impression that I should not have to specify a custom deserializer for such a simple value object.

I have connected directly to the web service using stubs I generated using wsdl2java, so I know there's nothing wrong with the web service.

Might someone be able to offer me advice on this?