Since you are using EJB3.0, you no longer need to "narrow" the returned object.
The lookup will return you an proxy which implements AddressDAO interface. Change your
code to
AddressDAO dao = (AddressDAO) ctx.lookup("ta3g/AddressDAOImplBMT/remote");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4107117#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...