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

