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#3976267

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3976267
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to