Example #1
0
 public string AuthenticateApplication(ref WindowsService.Authentication.OTAuthentication OTAuthentication, string applicationID, string password)
 {
     WindowsService.Authentication.AuthenticateApplicationRequest inValue = new WindowsService.Authentication.AuthenticateApplicationRequest();
     inValue.OTAuthentication = OTAuthentication;
     inValue.applicationID    = applicationID;
     inValue.password         = password;
     WindowsService.Authentication.AuthenticateApplicationResponse retVal = ((WindowsService.Authentication.Authentication)(this)).AuthenticateApplication(inValue);
     OTAuthentication = retVal.OTAuthentication;
     return(retVal.AuthenticateApplicationResult);
 }
Example #2
0
 WindowsService.Authentication.AuthenticateApplicationResponse WindowsService.Authentication.Authentication.AuthenticateApplication(WindowsService.Authentication.AuthenticateApplicationRequest request)
 {
     return(base.Channel.AuthenticateApplication(request));
 }