Type.registerNamespace('HKI');
HKI.CommonWebService=function() {
HKI.CommonWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HKI.CommonWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return HKI.CommonWebService._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
ForgetPassword:function(txtEmail,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ForgetPassword',false,{txtEmail:txtEmail},succeededCallback,failedCallback,userContext); }}
HKI.CommonWebService.registerClass('HKI.CommonWebService',Sys.Net.WebServiceProxy);
HKI.CommonWebService._staticInstance = new HKI.CommonWebService();
HKI.CommonWebService.set_path = function(value) { HKI.CommonWebService._staticInstance.set_path(value); }
HKI.CommonWebService.get_path = function() { return HKI.CommonWebService._staticInstance.get_path(); }
HKI.CommonWebService.set_timeout = function(value) { HKI.CommonWebService._staticInstance.set_timeout(value); }
HKI.CommonWebService.get_timeout = function() { return HKI.CommonWebService._staticInstance.get_timeout(); }
HKI.CommonWebService.set_defaultUserContext = function(value) { HKI.CommonWebService._staticInstance.set_defaultUserContext(value); }
HKI.CommonWebService.get_defaultUserContext = function() { return HKI.CommonWebService._staticInstance.get_defaultUserContext(); }
HKI.CommonWebService.set_defaultSucceededCallback = function(value) { HKI.CommonWebService._staticInstance.set_defaultSucceededCallback(value); }
HKI.CommonWebService.get_defaultSucceededCallback = function() { return HKI.CommonWebService._staticInstance.get_defaultSucceededCallback(); }
HKI.CommonWebService.set_defaultFailedCallback = function(value) { HKI.CommonWebService._staticInstance.set_defaultFailedCallback(value); }
HKI.CommonWebService.get_defaultFailedCallback = function() { return HKI.CommonWebService._staticInstance.get_defaultFailedCallback(); }
HKI.CommonWebService.set_path("/CommonWebService.asmx");
HKI.CommonWebService.HelloWorld= function(onSuccess,onFailed,userContext) {HKI.CommonWebService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
HKI.CommonWebService.ForgetPassword= function(txtEmail,onSuccess,onFailed,userContext) {HKI.CommonWebService._staticInstance.ForgetPassword(txtEmail,onSuccess,onFailed,userContext); }

