{
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, org.jboss.naming.JBossRemotingContextFactory.class.getName());
env.put(Context.PROVIDER_URL, "socket://172.16.83.75:3873");
InitialContext ctx = new InitialContext(env);
Test test = (Test)ctx.lookup("TestBean/remote");
assertEquals(test.echo("hello world"), "hello world");
}