Looks
like your parameters to QName are incorrect. The QName
constructor takes the namespace and type of the given object. The
error indicates the QName is
So
that should match to the following
smr.mapTypes(Constants.NS_URI_SOAP_ENC,
new QName("http://www.themindelectric.com/package/com.bioweb.services.dataserver/", "Category"), A.class, beanSer, beanSer); The
response probably looks something like this (omitting all the extra attributes
for brevity).
<Envelope ...>
<Body>
<someMethodResponse
...>
<Result
xsi:type="ns1:Category"
...
</Result>
</someMethodResponse>
</Body>
</Envelope>
-Joe
|
- Apache Bean Deserializer Problem Chirdeep Sharma
- Joe Pruitt