My WSDL defines a sequence of strings as a return type. When statically
building the stubs, the return type of the method I want to call is
_GetPriceResponse_GetPriceResult. Presumably this is a custom serialised
bean, though does the code below indicate otherwise?
Anyway, my question is, is there an example anywhere of deserializing a
bean, preferably to a String or some other object? It seems like a simple
thing to do, but there are no examples in the docs.
FYI The deserialiser method:
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
Thanks in advance
Ben