please share your log (maybe use pastebin or github gist to paste it) Romain Manni-Bucau Twitter: @rmannibucau Blog: http://rmannibucau.wordpress.com/ LinkedIn: http://fr.linkedin.com/in/rmannibucau Github: https://github.com/rmannibucau
2014/1/7 mauro2java2011 <[email protected]>: > r file i have : > > //the interface > > package test; > > import javax.ejb.Remote; > > /** > * > * @author utente_javaee7 > */ > @Remote > public interface TestBeanRemote { > String hello(); > } > > ......................... > //the implementation . i not have specified beanname or other stuff with > annotation @Stateless > > package test; > > import javax.ejb.Stateless; > > /** > * > * @author utente_javaee7 > */ > @Stateless > public class TestBean implements TestBeanRemote { > > @Override > public String hello() { > return "From " + this; > } > > } > > > > > > -- > View this message in context: > http://openejb.979440.n4.nabble.com/call-ejb-remote-not-work-help-me-tp4666948p4666995.html > Sent from the OpenEJB User mailing list archive at Nabble.com.
