var committente=function() {
committente.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
committente.prototype={
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(committente.get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
committente.registerClass('committente',Sys.Net.WebServiceProxy);
committente._staticInstance = new committente();
committente.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; committente._staticInstance._path = value; }
committente.get_path = function() { return committente._staticInstance._path; }
committente.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); }
committente._staticInstance._timeout = value; }
committente.get_timeout = function() { 
return committente._staticInstance._timeout; }
committente.set_defaultUserContext = function(value) { 
committente._staticInstance._userContext = value; }
committente.get_defaultUserContext = function() { 
return committente._staticInstance._userContext; }
committente.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; committente._staticInstance._succeeded = value; }
committente.get_defaultSucceededCallback = function() { 
return committente._staticInstance._succeeded; }
committente.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; committente._staticInstance._failed = value; }
committente.get_defaultFailedCallback = function() { 
return committente._staticInstance._failed; }
committente.set_path("/WebServices/committente.asmx");
committente.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {committente._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
