I have the same problem.. here is the solution (in a EJB3 context):
| @EJB(mappedName="ejb/CommandServiceBean") RemoteCommandServiceHome
cmdService;
|
and then.. (because is a EJB 2.1 for backward compatibility) you must use it like this:
| result=(ProcessInstance)cmdService.create().execute(cmd);
|
note the create() method
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4167607#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...