HRESULT Parse([in] VARIANT Envelope, [in, defaultvalue(L"")] BSTR characterEncoding);
This takes a SOAP Envelope and parses it back into the COM object model. If ThrowFaults is set to VARIANT_TRUE, then following successful completion of the parsing step, the message is checked to see if its a SOAP Fault, and if so, the fault is mapped to a COM error and returned.
dim e , t set e = CreateObject("pocketSOAP.Envelope.2") e.setMethod "echoString", "http://soapinterop.org/" e.Parameters.Create "inputString", "Hello World" set t = CreateObject("pocketSOAP.HTTPTransport.2") t.send "http://soap.4s4c.com/ilab/soap.asp", e.serialize e.parse t wscript.echo e.parameters.item(0).value
Copyright © Simon Fell, 2000-2004. All rights reserved.