I am having issues with a stateless session bean that is being deployed on jboss 4.0
The xdoclet tag for the session bean is as follows:
@ejb.bean name = “QueryStore”
* type = “Stateless”
* display-name = “QueryStore”
* view-type =”remote”
* jndi-name = “ejb/QueryStoreHome”
All of a sudden when I deploy the application I am getting errors from jboss about the ejb failing verification specifically saying every method needs to have java.rmi.RemoteException in its throws declaration. I didn’t have this before and never had these errors and the only thing that has changed is the version of MyEclipse since the last time I worked on this project.
Any Help would be appreciated.