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

