What is the role of the webserver?
Answers were Sorted based on User's Feedback
Answer / a.srinivas rao
A web server is the combination of HTTP engine,servlet
container and jsp container.the combination of servlet and
jsp containers is called web container which takes care of
every thing of servlet.a web server receives user request
in form of URL and maps it to appropriate servlet to
process the request
| Is This Answer Correct ? | 26 Yes | 7 No |
Answer / shakir
Using the internet,listening the HTTP request and providing
the HTTP response.
Transaction with HTTP request and respose.
That gives only a html output ,it will not proccess
business logic in the server side.They can provide HTTP
server.They are static.
| Is This Answer Correct ? | 24 Yes | 12 No |
Answer / ramakrishna
A webserver is a server side application which is used to
deploy webapplication in it,it will listen to Http request
coming to this web application and provide response to them
either in static or non-static page
| Is This Answer Correct ? | 13 Yes | 7 No |
Answer / madhu .yadavalli
the web server is execution infrastructure that handles
HTTP requests and responses
| Is This Answer Correct ? | 10 Yes | 7 No |
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
Explain Action Servlet?
Can we use threads in Servlets?
Why don't we write a constructor in a servlet?
What is the workflow of a servlet?
what is the control flow in servlet when we send a request?
How to generate the server side programming and the advantages of it over the other languages?
What is Servlet Context?
How does tomcat servlet container work?
Explain the difference between jsp and servlet?
How can you run a servlet program?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?