Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
No. The HTTP protocol is stateless and each request is handled separately. This leads to waste of resources. The idea of Java servlets and servlet containers is to eliminate as much as possible this kind of wastes. So the application server is a Java application and the servlets are loaded and handled somehow like plug-ins. So servlets are not stand-alone applicatons and are not able to run outside the servlet container.royc75 said:But if Apache is a web server can't it handle JSPs ans Servlets on it's own?
To run a servlet, Tomcat must be written in Java. Apache is written in C which is faster.royc75 said:If no, than what is the Apache's benefits?
Sorry, I can not help in this. I never used them that way.royc75 said:What is the topology of tomcat and Apache build together?
Go here and select a mirror, then you get it :royc75 said:where can I download Apache from
Not sure, but I think this is :royc75 said:get a reference for this combination
No. Dynamic content can be produced with CGI scripts too ( Perl and PHP the most commonly used ), and SSI ( for example my site ), or other processing mechanism ( like Escapade ). All this are better handled by Apache then by Tomcat.royc75 said:In fact, most of the content today is not static. So who uses it? Only web sites who has HTML/Javascript documents?