String recipient = "murphy@cloverave.com";
Context initial = new InitialContext();
Object objref = initial.lookup("java:comp/env/ejb/SimpleConfirmer");
ConfirmerHome home =
(ConfirmerHome)PortableRemoteObject.narrow(objref,
ConfirmerHome.class);
Confirmer confirmer = home.create();
confirmer.sendNotice(recipient);
System.exit(0);
} catch (Exception ex) {