Never mind. I've solved it.
In my case the interface in the client code had a different package clause than the one in
the server.
For example:
SERVER:
=======
package a.b.c;
public interface MyBeanInterface {...}
CLIENT:
======
package d.e.f;
public interface MyBeanInterface {...}
That caused the problem.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984267#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...