Type.registerNamespace('Evip');
Evip.KeepAlive=function() {
Evip.KeepAlive.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Evip.KeepAlive.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Evip.KeepAlive._staticInstance.get_path();},
KeepAlive:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'KeepAlive',false,{},succeededCallback,failedCallback,userContext); }}
Evip.KeepAlive.registerClass('Evip.KeepAlive',Sys.Net.WebServiceProxy);
Evip.KeepAlive._staticInstance = new Evip.KeepAlive();
Evip.KeepAlive.set_path = function(value) { Evip.KeepAlive._staticInstance.set_path(value); }
Evip.KeepAlive.get_path = function() { return Evip.KeepAlive._staticInstance.get_path(); }
Evip.KeepAlive.set_timeout = function(value) { Evip.KeepAlive._staticInstance.set_timeout(value); }
Evip.KeepAlive.get_timeout = function() { return Evip.KeepAlive._staticInstance.get_timeout(); }
Evip.KeepAlive.set_defaultUserContext = function(value) { Evip.KeepAlive._staticInstance.set_defaultUserContext(value); }
Evip.KeepAlive.get_defaultUserContext = function() { return Evip.KeepAlive._staticInstance.get_defaultUserContext(); }
Evip.KeepAlive.set_defaultSucceededCallback = function(value) { Evip.KeepAlive._staticInstance.set_defaultSucceededCallback(value); }
Evip.KeepAlive.get_defaultSucceededCallback = function() { return Evip.KeepAlive._staticInstance.get_defaultSucceededCallback(); }
Evip.KeepAlive.set_defaultFailedCallback = function(value) { Evip.KeepAlive._staticInstance.set_defaultFailedCallback(value); }
Evip.KeepAlive.get_defaultFailedCallback = function() { return Evip.KeepAlive._staticInstance.get_defaultFailedCallback(); }
Evip.KeepAlive.set_path("/admin/WebServices/KeepAlive.asmx");
Evip.KeepAlive.KeepAlive= function(onSuccess,onFailed,userContext) {Evip.KeepAlive._staticInstance.KeepAlive(onSuccess,onFailed,userContext); }
