HRESULT NoProxy();
This disables the use of a proxy server [previously enabled via a call to SetProxy].
dim t
set t =CreateObject("pocketSOAP.HTTPTransport.2")
' proxy through proxy.domain.com:8080
t.SetProxy "proxy.domain.com", 8080
t.send "http://example.org", e.serialize
' now make direct connections rather than proxying
t.NoProxy
t.send "http://example.org", e.serialize
Copyright © Simon Fell, 2000-2004. All rights reserved.