public string LogonTicket(string sLogonID, string sKey, string sApplication)
 {
     WSTestClientFileImport.Authentication.LogonTicketRequest inValue = new WSTestClientFileImport.Authentication.LogonTicketRequest();
     inValue.Body              = new WSTestClientFileImport.Authentication.LogonTicketRequestBody();
     inValue.Body.sLogonID     = sLogonID;
     inValue.Body.sKey         = sKey;
     inValue.Body.sApplication = sApplication;
     WSTestClientFileImport.Authentication.LogonTicketResponse retVal = ((WSTestClientFileImport.Authentication.AuthenticationSoap)(this)).LogonTicket(inValue);
     return(retVal.Body.LogonTicketResult);
 }
 WSTestClientFileImport.Authentication.LogonTicketResponse WSTestClientFileImport.Authentication.AuthenticationSoap.LogonTicket(WSTestClientFileImport.Authentication.LogonTicketRequest request)
 {
     return(base.Channel.LogonTicket(request));
 }