{
// JAXWS <service-ref> is only supported in EE5
if (isTargetJBoss5())
{
InitialContext iniCtx = getInitialContext();
EJBRemote ejbRemote = (EJBRemote)iniCtx.lookup("/EJBClient/remote");
String helloWorld = "Hello World!";
Object retObj = ejbRemote.echo(helloWorld);
assertEquals(helloWorld, retObj);
}
}