Make sure that on your bean you have ‘view-type=”both”‘ instead of “remote” – I think “remote” is the default value of the EJB creation wizard. Following is an example from a test project that I use that generates both remote and local interfaces and homes.
* @ejb.bean name = "Trader"
* type = "Stateless"
* display-name = "Trader"
* description = "Trader EJB"
* view-type = "both"
Let us know if this works.
Michael
MyEclipse Support