Hi all,
I'm using JB 4.04RC1.
Trying to deploy an ear called xxx.ear that contains war and ejb3 modules.
Session EJB seams to deploy without pb:
14:52:10,509 INFO [Ejb3AnnotationHandler] found EJB3: ejbName=MyManagerBean, class=test.MyManagerBean, type=STATELESS
String name = "xxx/MyManagerBean/remote";
try {
InitialContext ctx = new InitialContext();
System.out.println("Connecting to:" + name);
Object result = ctx.lookup(name);
ctx.close();
return result;
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException("Could not lookup remote object: "
+ name, e);
}