Answer Posted / bikash khuntia
Servlets are supported in nearly all web servers, from
Apache to Zeus.
Some web servers support servlets right out of the box. We
call this type of server a Standalone Servlet Engine.
Other web servers require a third-party plug-in to support
servlets. We call the servlet-enabling plug-in an Add-on
Servlet Engine.
Finally, if you want to write your own server with servlet
support, you can use what's called an Embeddable Servlet
Engine.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is servlet initializer?
What do you mean by web applications? Explain web application directory arrangement?
Explain the difference between a web server and a web container?
What are its drawbacks of cgi?
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!
Does servlet have main method?
Given the request path below, which are context path, servlet path and path info?
How can the session in servlet be destroyed?
What are some disadvantages of storing session state in cookies?
What are the mechanisms used by a servlet container for maintaining session information?
What are the types of Session Tracking ?
Explain the lifecycle of a servlet?
Explain the war file?
What is the procedure for initializing a servlet?
What is cookie in servlet?