At 11:48 AM 12/15/01 -0500, you wrote: >Thanks, > >I've been using JServ to create servlets for a while, and I thought that the >difference between simply using servlets and J2EE was that the latter has an >EJB container. If this is true, then does Tomcat come with an EJB container? >Or maybe a better question is, can you program EJBs with Tomcat? > >Thanks again, >Michael
Try looking at, for example, JBoss. That is a j2ee enterprise application container that uses Tomcat (and Jetty, if you want) as the web container. The previous answer gave you everything you need to know. The answer was and is that Tomcat is not a j2ee container. Tomcat is a web container that handles jsp/servlet functionality. Normally, the j2ee functionality is not web client to server, but is server to server and various underlying APIs (as pointed out to you in the previous answer) to assist. In short, the last guy gave you a correct answer. Read it carefully and start checking out enterprise application servers, such as JBoss, etc. Hope this helps, but it really does not and need not add anything to what you already have been told. What you already have been told is the whole answer. Tomcat has no deployer for enterprise java beans. Bye, -- micael -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
