HttpSession session = be.getSession();
String id = session.getId();
String name = be.getName();
Object value = be.getValue();
String source = be.getSource().getClass().getName();
String message = new StringBuffer("Attribute bound to session in ").append(source).append("\nThe attribute name: ").
append(name).append("\n").append("The attribute value: ").append(value).append("\n").append("The session id: ").append(id).toString();
System.out.println(message);