var WOEService=function() {
WOEService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WOEService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WOEService._staticInstance.get_path();},
UpdateActiveMasterTab:function(newTabIndex,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdateActiveMasterTab',false,{newTabIndex:newTabIndex},succeededCallback,failedCallback,userContext); },
GetMainCategoryList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMainCategoryList',false,{},succeededCallback,failedCallback,userContext); },
SubmitQuickPadQuery:function(keywords,quantities,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SubmitQuickPadQuery',false,{keywords:keywords,quantities:quantities},succeededCallback,failedCallback,userContext); }}
WOEService.registerClass('WOEService',Sys.Net.WebServiceProxy);
WOEService._staticInstance = new WOEService();
WOEService.set_path = function(value) { WOEService._staticInstance.set_path(value); }
WOEService.get_path = function() { return WOEService._staticInstance.get_path(); }
WOEService.set_timeout = function(value) { WOEService._staticInstance.set_timeout(value); }
WOEService.get_timeout = function() { return WOEService._staticInstance.get_timeout(); }
WOEService.set_defaultUserContext = function(value) { WOEService._staticInstance.set_defaultUserContext(value); }
WOEService.get_defaultUserContext = function() { return WOEService._staticInstance.get_defaultUserContext(); }
WOEService.set_defaultSucceededCallback = function(value) { WOEService._staticInstance.set_defaultSucceededCallback(value); }
WOEService.get_defaultSucceededCallback = function() { return WOEService._staticInstance.get_defaultSucceededCallback(); }
WOEService.set_defaultFailedCallback = function(value) { WOEService._staticInstance.set_defaultFailedCallback(value); }
WOEService.get_defaultFailedCallback = function() { return WOEService._staticInstance.get_defaultFailedCallback(); }
WOEService.set_path("/WOE/WOEService.asmx");
WOEService.UpdateActiveMasterTab= function(newTabIndex,onSuccess,onFailed,userContext) {WOEService._staticInstance.UpdateActiveMasterTab(newTabIndex,onSuccess,onFailed,userContext); }
WOEService.GetMainCategoryList= function(onSuccess,onFailed,userContext) {WOEService._staticInstance.GetMainCategoryList(onSuccess,onFailed,userContext); }
WOEService.SubmitQuickPadQuery= function(keywords,quantities,onSuccess,onFailed,userContext) {WOEService._staticInstance.SubmitQuickPadQuery(keywords,quantities,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('System.Data');
if (typeof(System.Data.DataSet) === 'undefined') {
System.Data.DataSet=gtc("System.Data.DataSet");
System.Data.DataSet.registerClass('System.Data.DataSet');
}

