-
-
-
Difference Between Web Container and Web Server
What is the Difference Between Web Container and Web Server?(Asked in Polaris Interview , held on April 11, Chennai)
-
-
What are the necessary conditions to override the init() in servlets?
For overriding init()method any rules are there
-
JSP server process
Explain the server process how will server identifies that and response to corresponding servlet and how it sends to that response to correct user ?
-
-
-
-
What are the differences between GET and POST service methods?
A GET request is a request to get a resource from the server. Choosing GET as the "method" will append all of the data to the URL and it will show up in the URL bar of your browser. The amount of information you can send back using a GET is restricted as URLs can only be 1024 characters. A POST request is a request to post (to send) form data to a resource on the server. A POST on the other hand will...
-
-
-
-
-
-
-
What is the servlet?
Servlets are modules that extend request/response-oriented servers, such as Java-enabled web servers. For example, a servlet may be responsible for taking data in an HTML order-entry form and applying the business logic used to update a company's order database.
-
-
Session and Cookie
What is the different between session and cookies? Where is the session information stored? In RAM of the Client or Disk of the Client or it is stored on the server?
-
What is the Servlet Interface?
The central abstraction in the Servlet API is the Servlet interface. All servlets implement this interface, either directly or, more commonly, by extending a class that implements it such as HttpServlet.Servlets-->Generic Servlet-->HttpServlet-->MyServlet.The Servlet interface declares, but does not implement, methods that manage the servlet and its communications with clients. Servlet writers...
Servlets Interview Questions
Ans