do like this
@Remote
public interface Count
{
public int count();
public void set(int val);
public void remove();
}
@Stateful(name = "CountingBean")
public class CountBean implements Count
{
...........
}
Then add the interceptors back.
You missed the annotation on the interface.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968106#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...