uuid(344d4164-ef4e-48d7-be76-13f0b5f13798)
progid(pocketsoap.Factory.1)
You use this object to create new proxy objects for specific SOAP servers.
| Name | Description |
|---|---|
| IProxyFactory [default] | Use this interface to create new proxy objects. This is a leggacy interface, included for backward compatibility only, new applications should use IProxyFactory2 instead. |
| IProxyFactory2 | Use this interface to create new proxy objects. |
Use the standard language feature for creating COM objects [CreateObject in VBScript, CreateObject or new in VB, or CoCreateInstance in C++]
Dim pf As Object, sp As Object
Set pf = CreateObject("pocketsoap.Factory")
Set sp = pf.CreateProxy("http://services.xmethods.net/soap", "urn:xmethods-delayed-quotes")
lres.AddItem txtTicker.Text + vbTab & sp.getQuote(symbol:=txtTicker.Text)
Copyright © Simon Fell, 2000-2004. All rights reserved.