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