var search_prod=function() {
search_prod.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
search_prod.prototype={
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(search_prod.get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
search_prod.registerClass('search_prod',Sys.Net.WebServiceProxy);
search_prod._staticInstance = new search_prod();
search_prod.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; search_prod._staticInstance._path = value; }
search_prod.get_path = function() { return search_prod._staticInstance._path; }
search_prod.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
search_prod._staticInstance._timeout = value; }
search_prod.get_timeout = function() { 
return search_prod._staticInstance._timeout; }
search_prod.set_defaultUserContext = function(value) { 
search_prod._staticInstance._userContext = value; }
search_prod.get_defaultUserContext = function() { 
return search_prod._staticInstance._userContext; }
search_prod.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; search_prod._staticInstance._succeeded = value; }
search_prod.get_defaultSucceededCallback = function() { 
return search_prod._staticInstance._succeeded; }
search_prod.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; search_prod._staticInstance._failed = value; }
search_prod.get_defaultFailedCallback = function() { 
return search_prod._staticInstance._failed; }
search_prod.set_path("/Components/search_prod.asmx");
search_prod.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {search_prod._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
