var SimpleService=function() {
SimpleService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SimpleService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SimpleService._staticInstance.get_path();},
GetCompletionList:function(prefixText,currentItems,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="currentItems" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,currentItems:currentItems},succeededCallback,failedCallback,userContext); }}
SimpleService.registerClass('SimpleService',Sys.Net.WebServiceProxy);
SimpleService._staticInstance = new SimpleService();
SimpleService.set_path = function(value) {
SimpleService._staticInstance.set_path(value); }
SimpleService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return SimpleService._staticInstance.get_path();}
SimpleService.set_timeout = function(value) {
SimpleService._staticInstance.set_timeout(value); }
SimpleService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return SimpleService._staticInstance.get_timeout(); }
SimpleService.set_defaultUserContext = function(value) { 
SimpleService._staticInstance.set_defaultUserContext(value); }
SimpleService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return SimpleService._staticInstance.get_defaultUserContext(); }
SimpleService.set_defaultSucceededCallback = function(value) { 
 SimpleService._staticInstance.set_defaultSucceededCallback(value); }
SimpleService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return SimpleService._staticInstance.get_defaultSucceededCallback(); }
SimpleService.set_defaultFailedCallback = function(value) { 
SimpleService._staticInstance.set_defaultFailedCallback(value); }
SimpleService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return SimpleService._staticInstance.get_defaultFailedCallback(); }
SimpleService.set_path("/SimpleService.asmx");
SimpleService.GetCompletionList= function(prefixText,currentItems,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="currentItems" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SimpleService._staticInstance.GetCompletionList(prefixText,currentItems,onSuccess,onFailed,userContext); }
