uuid(f8af8269-905e-4dbe-b28c-b30da00432be)
progid(pocketSOAP.Envelope.12)
This is a SOAP Envelope that's already configure to be in SOAP 1.2 format
| Name | Description |
|---|---|
| ISOAPEnvelope [default] | The primary interface to the SOAP Envelope object |
| ISOAPNamespaces | This interface allows access to the current Namespace definitions during [de]serialization |
| ISOAPEnvelope2 | Exposes SOAP envelope version information |
Call CoCreateInstance (or CreateObject etc) using the CLSID of ProgID.
dim env, t
set env = CreateObject("PocketSOAP.Envelope.12")
env.SetMethod "echoString", "http://example.org/ts-tests"
env.Parameters.Create "inputString", "Hello World"
set t = CreateObject("PocketSOAP.HTTPTransport")
t.Send "http://www.whitemesa.net/soap12/test-rpc", env
env.Parse t
Copyright © Simon Fell, 2000-2004. All rights reserved.