The following code works on WL4.5.1 and SE2.2 without problems.
I submit a GET request such as "http:////capture_servlet?DUMP=" in order to
dump out some current session information.  

But all I get here with Orion is the <PRE> and a blank page,  I assume it's
the call to getIds():

HttpSessionContext allSess = sess.getSessionContext();
out.println("<PRE>");

for (Enumeration sessions = allSess.getIds(); sessions.hasMoreElements() ;)
{

        String key = (String) sessions.nextElement();
        HttpSession aSess = allSess.getSession( key );
                        
        out.println( ">>>SESSION>>>" + key + ".........." + aSess );
}

TIA  -R

Reply via email to