When I run this piece of code:
<%
session = request.getSession();
if( session.isNew() )
out.println( "<br>New Session" );
else{
out.println( "<br>Using Old Session" );
Enumeration enames = session.getAttributeNames();
while(enames.hasMoreElements()){
String name = (String)enames.nextElement();
Object value = session.getAttribute(name);
out.println( "<br>" + name + " = " + value);
}
}
%>I learn that session is NOT a new session (which means that the JDBCRealm created one for me) and that there are no objects placed into the session.
Thanks again for the help.
-- ******************************************* * Rick Roberts * * Advanced Information Technologies, Inc. * *******************************************
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
