1.What is application server ?
2.What is web server ?
3.Explain the process of execution of a php file ?
Answer Posted / anil chowdary
Difference between AppServer and a Web server
(1) Webserver serves pages for viewing in web browser,
application server provides exposes businness logic for
client applications through various protocols
(2) Webserver exclusively handles http requests.application
server serves bussiness logic to application programs
through any number of protocols.
(3) Webserver delegation model is fairly simple,when the
request comes into the webserver,it simply passes the
request to the program best able to handle it(Server side
program). It may not support transactions and database
connection pooling.
(4) Application server is more capable of dynamic behaviour
than webserver. We can also configure application server to
work as a webserver.Simply applic! ation server is a
superset of webserver.
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Do you know what is the use of the function 'imagetypes()'?
Which MySQL function would you use to select a database?
What types of loops exist in php?
What are the benefits of using php?
Tell me how can we display information of a variable and readable by human with php?
How to insert a line break in php string?
What are the ways to define a constant in php?
Which parts of php are case sensitive?
/temp is a type of filesystem directory. State Whether True or False?
Tell me how is it possible to propagate a session id?
What does the php error 'parse error in php - unexpected t_variable at line x' means?
What changes I have to do in php.ini file for file uploading?
What is php namespace?
What is difference between compile time and run time polymorphism?
What is final in php?