This version of the Help is no longer updated. See JMP.com/help for the latest version.

.
Publication date: 07/30/2020

Terminate All Sessions

CAS Terminate Sessions() ends all sessions owned by the current user except for the current session.

CAS Teminate Sessions();

You can also specify the session ID to terminate the specified session.

CAS Terminate Sessions(session ID);

Use Get Session() to get the session ID.

url = http://myCASserver; // quoted string
cas = CAS Connect(
	URL( url ),
	Username( my_username ), // quoted string
	Prompt( "IfNeeded" )
);
session_id = cas << Get Session;

To terminate the current session, use CAS Disconnect().

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).