InitialContext ctx = new InitialContext();
String name = "ENCBean";
if( props != null )
name = props.getProperty("encBeanJndiName", "ENCBean");
TestENCHome home = (TestENCHome) ctx.lookup(name);
TestENC bean = home.create();
int iterations = Integer.getInteger("encIterations", 1000).intValue();
long time = bean.stressENC(iterations);
log.info("testENCPerf, time="+time);
bean.remove();
}