This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I understand that Apace is a webserver and tomcat a webcontainer.
My question: Is it mandatory to have a webcontainer along with webserver? ie., when we install webserver, at the time of installation will it ask that I need to install the webcontainer too?
Thanks, Sujatha
Marcus Green
arch rival
Rancher
Joined: Sep 14, 1999
Posts: 2813
posted
0
Apache is a web server and on its own just serves up static web pages. Though you can include modules that allow programming e.g. PHP and perl modules.
Tomcat is a JSP/Servlet container. This means it can do everythign Apache does in terms of serving up static pages but it will also process JSP and Servlets.
If Tomcat can do what Apache does why would anyone use Apache? Well Apache is highly tuned for its core role and of course many people want to use its other capabilities for server side scripting language. Does this address your question?