Type.registerNamespace('Hoozone.Web.WebService'); Hoozone.Web.WebService.Profile = { path: "/WebService/Profile.asmx", GetProfile:function(prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetProfile",{prefix:prefix}, onMethodComplete, onMethodTimeout); }, UpdateUserContactInfo:function(prefix,inputEmail,inputPostalCode,inputAddress,inputHomepage,contactVisibility,inputMobilePhone,inputTelephone,inputMSNEmail,inputQQNumber,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateUserContactInfo",{prefix:prefix,inputEmail:inputEmail,inputPostalCode:inputPostalCode,inputAddress:inputAddress,inputHomepage:inputHomepage,contactVisibility:contactVisibility,inputMobilePhone:inputMobilePhone,inputTelephone:inputTelephone,inputMSNEmail:inputMSNEmail,inputQQNumber:inputQQNumber}, onMethodComplete, onMethodTimeout); }, UpdateUserBasicInfo:function(prefix,inputNickName,checkValidateFriendRequest,gender,provinceID,selectCity,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateUserBasicInfo",{prefix:prefix,inputNickName:inputNickName,checkValidateFriendRequest:checkValidateFriendRequest,gender:gender,provinceID:provinceID,selectCity:selectCity}, onMethodComplete, onMethodTimeout); }, UpdateUserOtherInfo:function(prefix,inputRealName,year,month,day,textareaSignature,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateUserOtherInfo",{prefix:prefix,inputRealName:inputRealName,year:year,month:month,day:day,textareaSignature:textareaSignature}, onMethodComplete, onMethodTimeout); }, UpdateProfile:function(prefix,nickname,provinceID,selectCity,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateProfile",{prefix:prefix,nickname:nickname,provinceID:provinceID,selectCity:selectCity}, onMethodComplete, onMethodTimeout); }, GetCityByProvince:function(provinceID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetCityByProvince",{provinceID:provinceID}, onMethodComplete, onMethodTimeout); }, GetProvinces:function(prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetProvinces",{prefix:prefix}, onMethodComplete, onMethodTimeout); }, ChangePassword:function(oldPassword,newPassword,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "ChangePassword",{oldPassword:oldPassword,newPassword:newPassword}, onMethodComplete, onMethodTimeout); } }