Link to home
Start Free TrialLog in
Avatar of Sometimes
Sometimes

asked on

Current sessions

Is there a place/web page I can go to see all the jsp sessions that my computer is currently using,

thanks
ASKER CERTIFIED SOLUTION
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of aaaaaa
aaaaaa

this code will display all session

<%@ page import="java.util.*" %>
<table>
<%
Enumeration enames=session.getAttributeNames();
while (enames.hasMoreElements()){
  out.println("<tr>");
  String name=(String)enames.nextElement();
      Object value=session.getAttribute(name);
      out.println("<td>"+name+"</td>"+"<td>"+value+"</td>");
      out.println("</tr>");
}
%>
</table>