var Weather2=function() {
Weather2.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Weather2.prototype={
GetForecast:function(city,day,succeededCallback, failedCallback, userContext) {
return this._invoke(Weather2.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._path = value; }
Weather2.get_path = function() { return Weather2._staticInstance._path; }
Weather2.set_timeout = function(value) { Weather2._staticInstance._timeout = value; }
Weather2.get_timeout = function() { return Weather2._staticInstance._timeout; }
Weather2.set_defaultUserContext = function(value) { Weather2._staticInstance._userContext = value; }
Weather2.get_defaultUserContext = function() { return Weather2._staticInstance._userContext; }
Weather2.set_defaultSucceededCallback = function(value) { Weather2._staticInstance._succeeded = value; }
Weather2.get_defaultSucceededCallback = function() { return Weather2._staticInstance._succeeded; }
Weather2.set_defaultFailedCallback = function(value) { Weather2._staticInstance._failed = value; }
Weather2.get_defaultFailedCallback = function() { return Weather2._staticInstance._failed; }
Weather2.set_path("/WebServices/Weather2.asmx");
Weather2.GetForecast= function(city,day,onSuccess,onFailed,userContext) {Weather2._staticInstance.GetForecast(city,day,onSuccess,onFailed,userContext); }
