// Reference some application classes for the first time in destroy()
// and log the results
public void destroy() {
try {
SessionBean sb = new SessionBean();
log("OK Accessing SessionBean");
} catch (Throwable t) {
log("FAIL Accessing SessionBean", t);
}