Change this:
ctx = (Context) new InitialContext().lookup("java:comp/env");
|
| Object objref = ctx.lookup("java:/AppMail");
to:
Context ctx = new InitialContext();
| Object objref = ctx.lookup("java:/AppMail");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976267#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...