Esempio n. 1
0
        public bool ModifyPassword(string account, string pwd)
        {
            using (SGBaseUser_WClient client = SoapClientFactory.CreateSGBaseUser_WClient())
            {
                byte[] loginTicket = WebServiceSecurity.EncryptLoginer(Loginer.CurrentUser);

                return(client.U_ModifyPassword(loginTicket, account, pwd));
            }
        }