IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
Interface for basic web service. More...
Public Member Functions | |
string | GetServiceName () |
Returns the name of the web service. More... | |
void | SetServiceName (string name) |
Sets the name of the web service. More... | |
string | TestService () |
Tests whether the web service is alive. More... | |
string | TestServiceCmd (string commandlineArguments) |
Tests whether the web service is alive. More... | |
string | TestServiceArgs (string[] commandlineArguments) |
Tests whether the web service is alive. More... | |
string | TestCount () |
Web service method example. Increments a static counter. More... | |
Properties | |
string | Url [get, set] |
URL of the web service. More... | |
System.Net.CookieContainer | CookieContainer [get, set] |
Cookie container, for compatibility with proxy classes that are derived from the System.Web.Services.Protocols.HttpWebClientProtocol class. More... | |
![]() | |
int | Id [get] |
Returns unique ID (in the scope of a given type) of the current object. More... | |
![]() | |
object | Lock [get] |
Interface for basic web service.
string IG.Web.IWSBase.GetServiceName | ( | ) |
Returns the name of the web service.
Usually, address (URL) of the web service will consists of some base address and service name.
Implemented in IG.Web.WSBaseClass.
Referenced by IG.Script.AppTestShell.WebServiceFunctionCustomTest().
void IG.Web.IWSBase.SetServiceName | ( | string | name | ) |
Sets the name of the web service.
Usually, address (URL) of the web service will consists of some base address and service name.
Implemented in IG.Web.WSBaseClass.
string IG.Web.IWSBase.TestService | ( | ) |
Tests whether the web service is alive.
Returns a string identifying web service' class and object ID.
To test, right-click the Web Service's .asmx file and select View in a browser.
Implemented in IG.Web.WSBaseClass, and IG.Web.WSBase.
string IG.Web.IWSBase.TestServiceCmd | ( | string | commandlineArguments | ) |
Tests whether the web service is alive.
Returns a string identifying web service' class and object ID.
To test, right-click the Web Service's .asmx file and select View in a browser.
Implemented in IG.Web.WSBaseClass.
Referenced by IG.Script.AppTestShell.WebServiceFunctionCustomTest().
string IG.Web.IWSBase.TestServiceArgs | ( | string[] | commandlineArguments | ) |
Tests whether the web service is alive.
Returns a string identifying web service' class and object ID.
To test, right-click the Web Service's .asmx file and select View in a browser.
Implemented in IG.Web.WSBaseClass, and IG.Web.WSBase.
Referenced by IG.Script.AppTestShell.WebServiceFunctionCustomTest().
string IG.Web.IWSBase.TestCount | ( | ) |
Web service method example. Increments a static counter.
To test, right-click the Web Service's .asmx file and select View in Browser
Implemented in IG.Web.WSBaseClass, IG.Web.WSBase, and IG.Web.WSBase.
|
getset |
URL of the web service.
This is put into Web service such that base service classes can be used instead of proxy classes, which may be useful when the appropriate service references are not available to generate the proxy classes.
Referenced by IG.Script.AppTestShell.WebServiceFunctionCustomTest().
|
getset |
Cookie container, for compatibility with proxy classes that are derived from the System.Web.Services.Protocols.HttpWebClientProtocol class.
Referenced by IG.Script.AppTestShell.WebServiceFunctionCustomTest().