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