I\'ve added Tomcat in the \"Tools > Servers\" menu and as you can see it appears in the list of servers:
But when I try to run my project, I cannot select Tomcat! The dr
One of the mistakes I was making when I got this problem was that I was trying to deploy EAR project to Tomcat. Tomcat isn't an application server. It is a web server. It worked when I deployed the only the Web project of the EAR to Tomcat. The ejb can only be deployed to an application server.
I hope this helps.