*/
public void getEJBPrincipal() throws Exception {
InitialContext ic = new InitialContext();
Object objref = ic.lookup
("ejb/de.danet.an.workflow.util-lib.Util");
UtilHome home = (UtilHome)PortableRemoteObject.narrow
(objref, UtilHome.class);
assertTrue (home != null);
de.danet.an.util.Util ut = home.create();
assertTrue (ut != null);
Principal p = ut.getEJBPrincipal();
assertTrue(p != null);
assertTrue("Principal is: " + p.getName(),
p.getName().startsWith("StaffManagementMember_"));