You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by Scott Nichol <sn...@scottnichol.com> on 2002/08/31 01:23:33 UTC

Re: need your help for trying to understand the error while invoking a webservice method from a client

Note that I have just committed some code that will help you write Apache
SOAP clients that work with document/literal services.  The code now
includes a doclit sample that acts as a client to a public service.

What you do is basically:

1. Map the de-serializers for the return values.  This is necessary to
handle the doc/lit response.  It relies on the existing MS interop hack of
supplying the element qname rather than the element type qname.
2. Code the call and parameters like soap/rpc encoding.
3. Do call.setDocLitSerialization(true) before invoking.

Scott Nichol

----- Original Message -----
From: "Scott Nichol" <sn...@scottnichol.com>
To: <so...@xml.apache.org>
Cc: <Ga...@Netdecisions.com>
Sent: Friday, August 09, 2002 10:16 AM
Subject: Re: need your help for trying to understand the error while
invoking a webservice method from a client