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

