var SessionTrackerWS=function() {
SessionTrackerWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SessionTrackerWS.prototype={
UpdateSession:function(sessionID,companyID,userID,succeededCallback, failedCallback, userContext) {
return this._invoke(SessionTrackerWS.get_path(), 'UpdateSession',false,{sessionID:sessionID,companyID:companyID,userID:userID},succeededCallback,failedCallback,userContext); }}
SessionTrackerWS.registerClass('SessionTrackerWS',Sys.Net.WebServiceProxy);
SessionTrackerWS._staticInstance = new SessionTrackerWS();
SessionTrackerWS.set_path = function(value) { SessionTrackerWS._staticInstance._path = value; }
SessionTrackerWS.get_path = function() { return SessionTrackerWS._staticInstance._path; }
SessionTrackerWS.set_timeout = function(value) { SessionTrackerWS._staticInstance._timeout = value; }
SessionTrackerWS.get_timeout = function() { return SessionTrackerWS._staticInstance._timeout; }
SessionTrackerWS.set_defaultUserContext = function(value) { SessionTrackerWS._staticInstance._userContext = value; }
SessionTrackerWS.get_defaultUserContext = function() { return SessionTrackerWS._staticInstance._userContext; }
SessionTrackerWS.set_defaultSucceededCallback = function(value) { SessionTrackerWS._staticInstance._succeeded = value; }
SessionTrackerWS.get_defaultSucceededCallback = function() { return SessionTrackerWS._staticInstance._succeeded; }
SessionTrackerWS.set_defaultFailedCallback = function(value) { SessionTrackerWS._staticInstance._failed = value; }
SessionTrackerWS.get_defaultFailedCallback = function() { return SessionTrackerWS._staticInstance._failed; }
SessionTrackerWS.set_path("/WebServices/SessionTrackerWS.asmx");
SessionTrackerWS.UpdateSession= function(sessionID,companyID,userID,onSuccess,onFailed,userContext) {SessionTrackerWS._staticInstance.UpdateSession(sessionID,companyID,userID,onSuccess,onFailed,userContext); }
