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