The error message is strange, because it shows both the namespace
(http://schemas.xmlsoap.org/soap/envelope/) and namespace prefix (SOAP-ENV) with the
local name (Fault). What server is returning the Fault to your client? Can you
capture the response message (e.g. on Win2k with netmon, on UNIX
>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 15, 2003 3:13 AM
Subject: RE: No Deserializer found to deserialize ArrayOf_xsd_string
Thanks for your answer.
I used your suggestion but now I get the following error:
[SOAPException: faultCode=SOAP-ENV:Client; msg=The
'http://schema
o: [EMAIL PROTECTED]
Subject: Re: No Deserializer found to deserialize ArrayOf_xsd_string
You need to register a deserializer for ArrayOf_xsd_string, something
like
SOAPMappingRegistry smr = new SOAPMappingRegistry();
ArraySerializer arraySer = new ArraySerializer();
smr.mapTypes(Consta
You need to register a deserializer for ArrayOf_xsd_string, something
like
SOAPMappingRegistry smr = new SOAPMappingRegistry();
ArraySerializer arraySer = new ArraySerializer();
smr.mapTypes(Constants.NS_URI_SOAP_ENC,
new QName("urn:mbws", "ArrayOf_xsd_string"),
String