public string LogonKey(string sLogonID, string sPassword, string sApplication)
 {
     WSTestClientFileImport.Authentication.LogonKeyRequest inValue = new WSTestClientFileImport.Authentication.LogonKeyRequest();
     inValue.Body              = new WSTestClientFileImport.Authentication.LogonKeyRequestBody();
     inValue.Body.sLogonID     = sLogonID;
     inValue.Body.sPassword    = sPassword;
     inValue.Body.sApplication = sApplication;
     WSTestClientFileImport.Authentication.LogonKeyResponse retVal = ((WSTestClientFileImport.Authentication.AuthenticationSoap)(this)).LogonKey(inValue);
     return(retVal.Body.LogonKeyResult);
 }
 WSTestClientFileImport.Authentication.LogonKeyResponse WSTestClientFileImport.Authentication.AuthenticationSoap.LogonKey(WSTestClientFileImport.Authentication.LogonKeyRequest request)
 {
     return(base.Channel.LogonKey(request));
 }