Happened to read your post again. Your problem lies in this code:
Properties props = System.getProperties();
| Context ctx = new InitialContext(props);
| Object obj = ctx.lookup("HelloBean");
Change it to:
Context ctx = new InitialContext();
| Object obj = ctx.lookup("HelloBean");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3981366#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...