
// javascript proxy for webservices
// by Matthias Hertel
/* Use this service to request and manage credential tokens for other IFactorWebServices */

proxies.IFCommonService = {
url: "http://www.streetlightoutages.com/webservices/IFCommonService.asmx",
ns: "http://www.ifactorconsulting.com/webservices"
} // proxies.IFCommonService

/** Provide a username, password and expiryMinutes and receive a token string in return.  This token string will be valid in other IFactorWebServices */

proxies.IFCommonService.GetUserToken = function () { return(proxies.callSoap(arguments)); }
proxies.IFCommonService.GetUserToken.fname = "GetUserToken";
proxies.IFCommonService.GetUserToken.service = proxies.IFCommonService;
proxies.IFCommonService.GetUserToken.action = "http://www.ifactorconsulting.com/webservices/GetUserToken";
proxies.IFCommonService.GetUserToken.params = ["username:string","password:string","expiryMinutes:int"];
proxies.IFCommonService.GetUserToken.rtype = ["GetUserTokenResult:string"];
