예제 #1
0
 public object LDAPAuthenticationCheck(string username, string password, string LDAPPath, string Role)
 {
     AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckRequest inValue = new AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckRequest();
     inValue.Body          = new AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.LDAPPath = LDAPPath;
     inValue.Body.Role     = Role;
     AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckResponse retVal = ((AuthenticationChecker.LDAPAuthenticationService.ServicesSoap)(this)).LDAPAuthenticationCheck(inValue);
     return(retVal.Body.LDAPAuthenticationCheckResult);
 }
예제 #2
0
 AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckResponse AuthenticationChecker.LDAPAuthenticationService.ServicesSoap.LDAPAuthenticationCheck(AuthenticationChecker.LDAPAuthenticationService.LDAPAuthenticationCheckRequest request)
 {
     return(base.Channel.LDAPAuthenticationCheck(request));
 }