public string LoginOn(string Guid, string Name, string Pwd)
 {
     TEST1.SR.LoginOnRequest inValue = new TEST1.SR.LoginOnRequest();
     inValue.Body      = new TEST1.SR.LoginOnRequestBody();
     inValue.Body.Guid = Guid;
     inValue.Body.Name = Name;
     inValue.Body.Pwd  = Pwd;
     TEST1.SR.LoginOnResponse retVal = ((TEST1.SR.WebService1Soap)(this)).LoginOn(inValue);
     return(retVal.Body.LoginOnResult);
 }
 TEST1.SR.LoginOnResponse TEST1.SR.WebService1Soap.LoginOn(TEST1.SR.LoginOnRequest request)
 {
     return(base.Channel.LoginOn(request));
 }