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={
KeepAlive:function(succeededCallback, failedCallback, userContext) {
return this._invoke(Evip.KeepAlive.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._path = value; }
Evip.KeepAlive.get_path = function() { return Evip.KeepAlive._staticInstance._path; }
Evip.KeepAlive.set_timeout = function(value) { Evip.KeepAlive._staticInstance._timeout = value; }
Evip.KeepAlive.get_timeout = function() { return Evip.KeepAlive._staticInstance._timeout; }
Evip.KeepAlive.set_defaultUserContext = function(value) { Evip.KeepAlive._staticInstance._userContext = value; }
Evip.KeepAlive.get_defaultUserContext = function() { return Evip.KeepAlive._staticInstance._userContext; }
Evip.KeepAlive.set_defaultSucceededCallback = function(value) { Evip.KeepAlive._staticInstance._succeeded = value; }
Evip.KeepAlive.get_defaultSucceededCallback = function() { return Evip.KeepAlive._staticInstance._succeeded; }
Evip.KeepAlive.set_defaultFailedCallback = function(value) { Evip.KeepAlive._staticInstance._failed = value; }
Evip.KeepAlive.get_defaultFailedCallback = function() { return Evip.KeepAlive._staticInstance._failed; }
Evip.KeepAlive.set_path("/admin/WebServices/KeepAlive.asmx");
Evip.KeepAlive.KeepAlive= function(onSuccess,onFailed,userContext) {Evip.KeepAlive._staticInstance.KeepAlive(onSuccess,onFailed,userContext); }
