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