var CommonWebService=function() {
CommonWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CommonWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CommonWebService._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetMyTemp:function(uid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMyTemp',false,{uid:uid},succeededCallback,failedCallback,userContext); },
GetMyContact:function(uid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMyContact',false,{uid:uid},succeededCallback,failedCallback,userContext); },
GetStates:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetStates',false,{},succeededCallback,failedCallback,userContext); },
GetCities:function(st,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCities',false,{st:st},succeededCallback,failedCallback,userContext); },
GetMySignature:function(uid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMySignature',false,{uid:uid},succeededCallback,failedCallback,userContext); },
CheckUserName:function(un,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckUserName',false,{un:un},succeededCallback,failedCallback,userContext); },
GetStatesC:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetStatesC',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); },
GetCityC:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCityC',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); }}
CommonWebService.registerClass('CommonWebService',Sys.Net.WebServiceProxy);
CommonWebService._staticInstance = new CommonWebService();
CommonWebService.set_path = function(value) { CommonWebService._staticInstance.set_path(value); }
CommonWebService.get_path = function() { return CommonWebService._staticInstance.get_path(); }
CommonWebService.set_timeout = function(value) { CommonWebService._staticInstance.set_timeout(value); }
CommonWebService.get_timeout = function() { return CommonWebService._staticInstance.get_timeout(); }
CommonWebService.set_defaultUserContext = function(value) { CommonWebService._staticInstance.set_defaultUserContext(value); }
CommonWebService.get_defaultUserContext = function() { return CommonWebService._staticInstance.get_defaultUserContext(); }
CommonWebService.set_defaultSucceededCallback = function(value) { CommonWebService._staticInstance.set_defaultSucceededCallback(value); }
CommonWebService.get_defaultSucceededCallback = function() { return CommonWebService._staticInstance.get_defaultSucceededCallback(); }
CommonWebService.set_defaultFailedCallback = function(value) { CommonWebService._staticInstance.set_defaultFailedCallback(value); }
CommonWebService.get_defaultFailedCallback = function() { return CommonWebService._staticInstance.get_defaultFailedCallback(); }
CommonWebService.set_path("/Services/CommonWebService.asmx");
CommonWebService.HelloWorld= function(onSuccess,onFailed,userContext) {CommonWebService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
CommonWebService.GetMyTemp= function(uid,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetMyTemp(uid,onSuccess,onFailed,userContext); }
CommonWebService.GetMyContact= function(uid,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetMyContact(uid,onSuccess,onFailed,userContext); }
CommonWebService.GetStates= function(onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetStates(onSuccess,onFailed,userContext); }
CommonWebService.GetCities= function(st,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetCities(st,onSuccess,onFailed,userContext); }
CommonWebService.GetMySignature= function(uid,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetMySignature(uid,onSuccess,onFailed,userContext); }
CommonWebService.CheckUserName= function(un,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.CheckUserName(un,onSuccess,onFailed,userContext); }
CommonWebService.GetStatesC= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetStatesC(knownCategoryValues,category,onSuccess,onFailed,userContext); }
CommonWebService.GetCityC= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {CommonWebService._staticInstance.GetCityC(knownCategoryValues,category,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.CascadingDropDownNameValue) === 'undefined') {
AjaxControlToolkit.CascadingDropDownNameValue=gtc("AjaxControlToolkit.CascadingDropDownNameValue");
AjaxControlToolkit.CascadingDropDownNameValue.registerClass('AjaxControlToolkit.CascadingDropDownNameValue');
}
