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
The service is returning the value in an XML element (named 'return') that
has no xsi:type attribute. Therefore, your client must provide a type
mapping for this element, such as by adding code like:
SOAPMappingRegistry smr = new SOAPMappingRegistry();
smr.mapTypes(Constants.NS_URI_SOAP_
]>
Sent: Wednesday, August 29, 2001 6:03 PM
Subject: RE: No Deserializer found Exception...
> Hi All
>
> I got the following exception ..
>
> Caught SOAPException (SOAP-ENV:Client): No Deserializer found to
deserialize
> a
> http://xmlme.net/webservice
Title: RE: No Deserializer found Exception...
Hi All
I got the following exception ..
Caught SOAPException (SOAP-ENV:Client): No Deserializer found to deserialize a
http://xmlme.net/webservices/:FindVideoGamesResult' using encoding style 'http:
/schemas.x
Hi !
Looks like there is no deserializer in your client code to convert
the result xml to java.
Add a type mapping. For more details look at the troubleshooting topics
in the Apache soap documentation.
rajashekar wrote:
Hi All,
While calling SOAP service from my
Java Client, the following excep
Hi Doug,
I would recommend upgrading to Apache SOAP v2.2, and reading the
"Interoperability" section in the User's Guide. You need to tell the system
what the type of the ':Result' parameter is.
Thanks,
-Matt
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Se
i am sorry, that was for RPC and not for message driven SOAP.
Raja
Innova Solutions
Ph: Off : 3543139,40,50 X 217
Res : 3551023
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 21, 2001 11:29 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subj
Hi ,
Did you set the soap mapping registry ? you need to set it by --
call.setSOAPMappingRegistry(smr);
where call is the calling object and smr is the SOAP mapping registry
object.
Raja
Innova Solutions
Ph: Off : 3543139,40,50 X 217
Res : 3551023
-Original Message-
From: [EMAIL
Apache SOAP 2.1 and 2.2 do require xs:type attributes. You can get around
this by adding QNames for your parameters in the type mapping registry. This
is covered in the docs for Apache SOAP 2.1
Rick Hansen
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent:
12 matches
Mail list logo