• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

EJB

 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am Beginner. pls help

Does tomcat suport EJB. I heard that we can add some patch to tomcat to work with EJB.

Thanks Maha
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It does not, and you cannot.

If you need EJB, then consider a real EJB container, like jboss or jrun or jonas. There's also APIs and code libraries that don't function 'stand alone', but that you can bolt on to products like tomcat.

http://www.openejb.org/ (currently, the first news story on this site is about integrating their product with Tomcat).
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You could check out JBoss; www.jboss.org

HTH
 
Saloon Keeper
Posts: 28806
212
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just for info, EJBs run in an EJB Container. Tomcat is not an EJB container, but EJB containers such as JBoss and JOnAS can run embedded Tomcat (or Jetty) servers for their JSP and servlet needs.

Both of these systems have made the task of getting Tomcat/EJB integration quite smooth - effectively no more difficult than getting an "all-in-one" J2EE server like WebSphere or WebLogic running.
 
It's a tiny ad. At least, that's what she said.
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic