"bpet36" wrote : 
  | 
  | obj = PortableRemoteObject.narrow(ctx.lookup("ejb/UserAdmin/UserBean" , 
Class.forName(className));
  |  

Change this code to:

obj = ctx.lookup("ejb/UserAdmin/UserBean");
  | UserBeanHome home = (UserBeanHome) 
PortableRemoteObject.narrow(obj,UserBeanHome.class);
  | 

Also, do you package JBoss related jar files in your application? If yes, then 
remove those from your application.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114085#4114085

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114085
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to