I'm trying to migrate our Application from JBoss 4.2.3 to JBoss 5.1. I have Problems connecting to the EJB (Stateful bean) from the Frontend. I get an "java.lang.ClassCastException: javax.naming.Reference" (on last line):
InitialContext ctx = new InitialContext();
Object obj = ctx.lookup("foo/bar/remote");
localInterface = (MyInterface) obj ;
has anything been changed since 4.2.3? Could a library be missing?