So, when I try find my EJB calling of my application, case this exception:
javax.naming.NameNotFoundException: tempConv.TempConvEJB not bound
Object objRef = ic.lookup("tempConv.TempConvEJB");
The default scheme for JNDI names in JBoss is
<ear>/<bean-class-simple-name>/remotefor remote interfaces. For local interface change to
<ear>/<bean-class-simple-name>/local
Object obj = ic.lookup(Bean.class.getSimpleName()+"/remote");