RE: What is the difference between Web Server and Appl...
Webserver:
A Web server handles the HTTP protocol. When the Web server receives an HTTP request it responds with an HTTP response such as sending back an HTML page. To process a request a Web server may respond with a static HTML page or image send a redirect or delegate the dynamic response generation to some other program such as CGI scripts JSPs (JavaServer Pages) servlets ASPs (Active Server Pages) server-side JavaScripts or some other server-side technology. Whatever their purpose such server-side programs generate a response most often in HTML for viewing in a Web browser.
Application Server:
As for the application server according to our definition an application server exposes business logic to client applications through various protocols possibly including HTTP. While a Web server mainly deals with sending HTML for display in a Web browser an application server provides access to business logic for use by client application programs. The application program can use this logic just as it would call a method on an object
RE: What is the difference between Web Server and Appl...
webserver is used only for jsp and servlets and for static functionality it has limited functionality and it doesn't provide any security persistence and it doesn't support EJB and JMS and JAAS like other functionality
whereas Application server provide all functionalities
RE: What is the difference between Web Server and Appl...
Web Server & Application Server are different in the following aspects. The Web Server does not support the concept of multi-threading. In Application Server we have features like connection pulling isolation pulling multi-threading and majorly the Transaction feature which is not there in Web Server. An Application Server may include a Web Server inside it.
RE: What is the difference between Web Server and Appl...
with out webserver support for alternatively we can use application for can u run web application in http protocol. if it is possible why we are using webserver...
RE: What is the difference between Web Server and Appl...
hi
web server is multi threaded else how can it support servlet threaded model.Obviously application server is multi threaded i agree to that. This cannot be a point of difference between app and web server.
RE: What is the difference between Web Server and Appl...
Web Server ->we can run only servlets jsp and html pages but not EJB'S
Example of web server are Tomcat.
Application Server> we can run servlets html and jsp pages and we can also run and deploy EJB's in Application servers which is not possible in webserver