EchoMessageHelper.narrow (setup.getServerObject());
String outMsg = new String(Integer.toString(1)
+ "test_echo_string is hailing server with IOR <" + ior + ">");
long tms_out = System.currentTimeMillis();
String inMsg = server.echo_string(outMsg);
long tms_in = System.currentTimeMillis();
long tms_dif = tms_in - tms_out;
if (outMsg.equals(inMsg))
{
assertTrue("OK: " + tms_dif + "mSec <" + inMsg + ">", true);