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.

Reply via email to