public String invokeEjb(String s) throws Exception
{
InitialContext ctx = new InitialContext();
Object obj = ctx.lookup("ExampleSession");
ExampleSessionHome home = (ExampleSessionHome)PortableRemoteObject.narrow(obj, ExampleSessionHome.class);
ExampleSession exSess = home.create();
return exSess.getValue(s);
}