way to get list of all session variables and values?

2002-02-07 Thread C Cayetano
All, Is there a wat to get a listing of all session variables and their values? Thanks -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: way to get list of all session variables and values?

2002-02-07 Thread August Detlefsen
Try this in your JSP: % if (true) { //turn output on and off Enumeration e = session.getAttributeNames(); while (e.hasMoreElements()) { String name = (String)e.nextElement(); Object value =

RE: way to get list of all session variables and values?

2002-02-07 Thread C Cayetano
That worked great! Thanks. -Original Message- From: August Detlefsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 10:40 AM To: Tomcat Users List Subject: Re: way to get list of all session variables and values? Try this in your JSP: % if (true) {