protected void execute() throws Exception {
Hashtable<String, String> jndiProps = new Hashtable<String, String>();
jndiProps.put( Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming" );
Context context = new InitialContext( jndiProps );
StatelessSession slsb = (StatelessSession)context.lookup(SLSB_JNDI);
for (int i = 0; i < 10; i++){
System.out.println(slsb.getServer());
}
}