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

