Type.registerNamespace('TAS.Services');
TAS.Services.Lagoon=function() {
TAS.Services.Lagoon.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
TAS.Services.Lagoon.prototype={
GetWebcamImages:function(succeededCallback, failedCallback, userContext) {
return this._invoke(TAS.Services.Lagoon.get_path(), 'GetWebcamImages',false,{},succeededCallback,failedCallback,userContext); }}
TAS.Services.Lagoon.registerClass('TAS.Services.Lagoon',Sys.Net.WebServiceProxy);
TAS.Services.Lagoon._staticInstance = new TAS.Services.Lagoon();
TAS.Services.Lagoon.set_path = function(value) { TAS.Services.Lagoon._staticInstance._path = value; }
TAS.Services.Lagoon.get_path = function() { return TAS.Services.Lagoon._staticInstance._path; }
TAS.Services.Lagoon.set_timeout = function(value) { TAS.Services.Lagoon._staticInstance._timeout = value; }
TAS.Services.Lagoon.get_timeout = function() { return TAS.Services.Lagoon._staticInstance._timeout; }
TAS.Services.Lagoon.set_defaultUserContext = function(value) { TAS.Services.Lagoon._staticInstance._userContext = value; }
TAS.Services.Lagoon.get_defaultUserContext = function() { return TAS.Services.Lagoon._staticInstance._userContext; }
TAS.Services.Lagoon.set_defaultSucceededCallback = function(value) { TAS.Services.Lagoon._staticInstance._succeeded = value; }
TAS.Services.Lagoon.get_defaultSucceededCallback = function() { return TAS.Services.Lagoon._staticInstance._succeeded; }
TAS.Services.Lagoon.set_defaultFailedCallback = function(value) { TAS.Services.Lagoon._staticInstance._failed = value; }
TAS.Services.Lagoon.get_defaultFailedCallback = function() { return TAS.Services.Lagoon._staticInstance._failed; }
TAS.Services.Lagoon.set_path("/lagoon.asmx");
TAS.Services.Lagoon.GetWebcamImages= function(onSuccess,onFailed,userContext) {TAS.Services.Lagoon._staticInstance.GetWebcamImages(onSuccess,onFailed,userContext); }
