Esempio

public class BeanClass implements javax.ejb.MessageDrivenBean {
public void ejbCreate (int a) {
//..
}
//other methods that must implement the interface
}

Soluzione
Non utilizzare parametri per ejbCreate().


public class BeanClass implements javax.ejb.MessageDrivenBean {
public void ejbCreate () {
//..
}
//other methods that must implement the interface
}