//String providerURL = "jnp://localhost:1099";
String hostAddr = Project.getHostAddress();
String providerURL = "jnp://" + hostAddr + ":1099";
//masuda$
LoginHelper.setEJBClientContext(hostAddr, "4777", qid, password);
RemoteSystemService service = (RemoteSystemService) LoginHelper.lookup("RemoteSystemService");
String result = service.helloDolphin();
return result;
}