var WolfWebService=function() {
WolfWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WolfWebService.prototype={
getPopupHTML:function(plane,pType,succeededCallback, failedCallback, userContext) {
return this._invoke(WolfWebService.get_path(), 'getPopupHTML',false,{plane:plane,pType:pType},succeededCallback,failedCallback,userContext); },
getBrokerPopupHTML:function(plane,succeededCallback, failedCallback, userContext) {
return this._invoke(WolfWebService.get_path(), 'getBrokerPopupHTML',false,{plane:plane},succeededCallback,failedCallback,userContext); },
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(WolfWebService.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); }}
WolfWebService.registerClass('WolfWebService',Sys.Net.WebServiceProxy);
WolfWebService._staticInstance = new WolfWebService();
WolfWebService.set_path = function(value) { WolfWebService._staticInstance._path = value; }
WolfWebService.get_path = function() { return WolfWebService._staticInstance._path; }
WolfWebService.set_timeout = function(value) { WolfWebService._staticInstance._timeout = value; }
WolfWebService.get_timeout = function() { return WolfWebService._staticInstance._timeout; }
WolfWebService.set_defaultUserContext = function(value) { WolfWebService._staticInstance._userContext = value; }
WolfWebService.get_defaultUserContext = function() { return WolfWebService._staticInstance._userContext; }
WolfWebService.set_defaultSucceededCallback = function(value) { WolfWebService._staticInstance._succeeded = value; }
WolfWebService.get_defaultSucceededCallback = function() { return WolfWebService._staticInstance._succeeded; }
WolfWebService.set_defaultFailedCallback = function(value) { WolfWebService._staticInstance._failed = value; }
WolfWebService.get_defaultFailedCallback = function() { return WolfWebService._staticInstance._failed; }
WolfWebService.set_path("/WolfWebService.asmx");
WolfWebService.getPopupHTML= function(plane,pType,onSuccess,onFailed,userContext) {WolfWebService._staticInstance.getPopupHTML(plane,pType,onSuccess,onFailed,userContext); }
WolfWebService.getBrokerPopupHTML= function(plane,onSuccess,onFailed,userContext) {WolfWebService._staticInstance.getBrokerPopupHTML(plane,onSuccess,onFailed,userContext); }
WolfWebService.HelloWorld= function(onSuccess,onFailed,userContext) {WolfWebService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
if (typeof(WolfWebService_PlaneTypes) === 'undefined') {
WolfWebService_PlaneTypes = function() { throw Error.invalidOperation(); }
WolfWebService_PlaneTypes.prototype = {LightCitation550: 1,MidHawker700: 2,HeavyGulfstream550: 3}
WolfWebService_PlaneTypes.registerEnum('WolfWebService_PlaneTypes', true);
}
if (typeof(WolfWebService_picType) === 'undefined') {
WolfWebService_picType = function() { throw Error.invalidOperation(); }
WolfWebService_picType.prototype = {Interior: 1,Exterior: 2}
WolfWebService_picType.registerEnum('WolfWebService_picType', true);
}
