playing around with EJB3 (first itme)
I create a SimpleBean:
@Stateless
public class SimpleBean {
public void aMethod() {
// log something ...
}
}
@Remote
public interface Simple {
public void aMethod();
}
Ok found,
was a mistake of my JBoss installation.
Using installer and running default installation works.