Class wwSOAPProxy

A SOAP proxy class that can be autogenerated using the CONSOLE WSDL Generation routines.

This proxy class acts as a proxy to the underlying SOAP client. The generated class includes strongly typed methods and provides error handling for requests.

The classes generated are subclassed from wwSOAPPRoxy so they inherit the properties and methods here. Additionally each Web Service method will be reflected as a method on the Proxy object.

Class Members

MemberDescription
LoadWSDL Loads the WSDL file manually. If you call this method you should pass the third parameter to the Constructor as .T. to avoid having the WSDL be loaded when the class is created. Use this method…
o.LoadWSDL(lcUrl)
cErrorMsg Error message set after a Proxy method call if it fails. Check lError first for error condition.
cPassword Windows or Basic Authentication Passwords for accessing the Web Service on the server side. Password is applied to both the Web Service and the WSDL URLs.
cProxy Optional Proxy name for the connection. Proxy format is :.
cUserName Optional Username for Authentication on the server.
cWSDLURl The URL to the WSDL file.
lError Check this property to see if an error occurred.
nClientMode 0 - wwSOAP - 1 MSSOAP
nTimeout Connection Timeout and time to wait for request completion.

Example

  • ** Simple Example oProxy = CREATEOBJECT("FoxCentralProxy") lcXML = oProxy.GetNewsItems(14,0,"ALL")

  • ** Custom Settings example

  • ** Create for wwSoap and don't load WSDL file yet oProxy = CreateObject("FoxCentralProxy",0,.T.)

oProxy.nTimeout = 5 oProxy.cUsername = "rstrahl" oProxy.cPassword = "supersecret"

oProxy.LoadWsdl()

lcXML = oProxy.GetNewsItems(14,0,"ALL")


© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic