%@ taglib uri="http://jakarta.apache.org/taglibs/tomcat_admin-1.0"
prefix="adm" %>
Session info
Invalidating <%= request.getParameter("id" ) %>
<%
org.apache.tomcat.core.ServerSession s=store.findSession( ctx,
request.getParameter("id" ));
if (s != null ) {
s.setState( org.apache.tomcat.core.ServerSession.STATE_EXPIRED );
%>
Session invalidated successfully
<%
} else
%>
Session not found , already invalidated