> Can someone tell me if there is any incompatibility issue
> between Apache SOAP and Microsoft SOAP?

It's not so difficult.The Apache SOAP implementation always puts the
xsi:type elements for all the parameters in the request while Microsoft SOAP
Toolkit does not. You can handle this situation by instructing Apache SOAP
Client to not to expect the xsi:type attribute in the response received.
This is done by following lines in the client code:

SOAPMappingRegistry smr = new SOAPMappingRegistry();
StringDeserializer sd = new StringDeserializer();
smr.mapTypes(Constants.NS_URI_SOAP_ENC, new QName("", "Result"), null, null,
sd);

Anyway see this article:
http://www.perfectxml.com/articles/xml/soapguide.asp

Bye,
Gp

P.S.
Please use only plain text in mailing list. We do not like HTML or RTF
mails.

Reply via email to