Type.registerNamespace('mp2');
mp2.atcService=function() {
mp2.atcService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
mp2.atcService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return mp2.atcService._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
RetrieveAtcDescription:function(prefixText,count,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</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(), 'RetrieveAtcDescription',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
mp2.atcService.registerClass('mp2.atcService',Sys.Net.WebServiceProxy);
mp2.atcService._staticInstance = new mp2.atcService();
mp2.atcService.set_path = function(value) {
mp2.atcService._staticInstance.set_path(value); }
mp2.atcService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return mp2.atcService._staticInstance.get_path();}
mp2.atcService.set_timeout = function(value) {
mp2.atcService._staticInstance.set_timeout(value); }
mp2.atcService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return mp2.atcService._staticInstance.get_timeout(); }
mp2.atcService.set_defaultUserContext = function(value) { 
mp2.atcService._staticInstance.set_defaultUserContext(value); }
mp2.atcService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return mp2.atcService._staticInstance.get_defaultUserContext(); }
mp2.atcService.set_defaultSucceededCallback = function(value) { 
 mp2.atcService._staticInstance.set_defaultSucceededCallback(value); }
mp2.atcService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return mp2.atcService._staticInstance.get_defaultSucceededCallback(); }
mp2.atcService.set_defaultFailedCallback = function(value) { 
mp2.atcService._staticInstance.set_defaultFailedCallback(value); }
mp2.atcService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return mp2.atcService._staticInstance.get_defaultFailedCallback(); }
mp2.atcService.set_path("/atcService.asmx");
mp2.atcService.HelloWorld= function(onSuccess,onFailed,userContext) {
/// <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>
mp2.atcService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
mp2.atcService.RetrieveAtcDescription= function(prefixText,count,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</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>
mp2.atcService._staticInstance.RetrieveAtcDescription(prefixText,count,onSuccess,onFailed,userContext); }

