Application hardware had two web servers and one application server.
My understanding is Application server will be hosting
J2EE Container, which is combination of Web and EJB Container.
So our Jsps,
Servlets, Business logic, EJBs all are residing in J2EE container that is the Application Server.
In practice web servers are only used for static content (HTML, gifs, JS etc.) and they are only used for redirecting the
JSP requests to J2EE container.
So why they choose two web servers? How we are going to achieve scalability and high performance.
Above all single application server means single point of failure.
How you guys are handling this questions.
[ August 29, 2006: Message edited by: Vidyasagar Guduru ]