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