• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

tomcat j2ee

 
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can i use tomcat as EJB server?
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found this post........ Helped me alittle understanding the same question...........


Where does Tomcat fit into J2EE? Thats a fairly open ended question but here goes.
Tomcat is a java based web server that supports both servlets and jsp. J2EE is a framework of java based technologies that includes EJB(destributed components), JMS(asynchronous messaging), JCA(back end conectivity), JDBC(database conectivity)as well as many others. JSP/Servlets are one of those technologies.

Tomcat is usefull for devoloping web applications that use JSP/Servlets. If you need additional J2EE functionality you will probably need an Applicaton Server. Sun produce a reference implementation of a J2EE application server, which you have already downloaded and installed. It is called a reference implementation as it is designed simply for testing J2EE technologies and not as an industry standard product.

As far as reading material goes there is no shortage on the web! Tomcat comes with alot of nice examples of both JSP and Servlet applications. There is a full J2EE step by step tutorial, which you can download from Sun. There should be enough in those two to keep you busy for a while!

Good Luck,

Andrew
 
Ranch Hand
Posts: 823
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So that was a "no" just in case anyone is left wondering.

Tomcat is a servlet/JSP container. You need an EJB container (J2EE app server?) to run EJBs. Popular examples are JBoss, BEA Weblogic, IBM Websphere ... um ... what else? I don't do EJB.

Jules
reply
    Bookmark Topic Watch Topic
  • New Topic