Description: Soap client helper class for C++
Usage: 1. Inherit a class from this base class
2. Call Init in constructor, like this:
Init "http://localhost/AuthService/AuthService.asmx?wsdl", "AuthService", "")
3. Wrap the webservice by writing proxy function for each web method
4. Call Invoke to execute the function, processing the input params and return valuebe careful, the order of parameters should be reversed in the parameter array while callin Invoke
5. Then use this class to call webservice, like this:
AuthServiceClient service
bool ret = service.IsAuthorized(strCode)
File list (Check if you may need any files):
SoapClientBase.h