{
deploy("jaxws-samples-webserviceref-ejb3-client.jar");
try
{
InitialContext iniCtx = getInitialContext();
EJB3Remote ejb3Remote = (EJB3Remote)iniCtx.lookup("/EJB3Client/remote");
String helloWorld = "Hello World!";
Object retObj = ejb3Remote.echo(helloWorld);
assertEquals(helloWorld, retObj);
}
finally
{
undeploy("jaxws-samples-webserviceref-ejb3-client.jar");