Enumeration atts = session.getAttributeNames();
while (atts.hasMoreElements()){
String name = (String)atts.nextElement();
if (name.startsWith("T_"))
session.removeAttribute(name);
}
[/Quote]
Enumeration atts = session.getAttributeNames();
while (atts.hasMoreElements()){
String name = (String)atts.nextElement();
if (name.startsWith("T_"))
session.removeAttribute(name);
}