-
What are the Characteristics of Servlets?
The characteristics of servlets that have gained them a wide spread acceptance are as follows:1.Servlets are efficient:The initialization code for a servlet is executed only when the servlet is executed for the first time.Subsequently, the requests that are received by the servlet are processed by its service() method.This helps to increase the efficiency of the server by avoiding creation of unnecessary...
-
-
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 ?
-
-
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)
-
Write a java servlet to read two parameters ?
Write a java servlet which reads two parameters from the web page,say,value 1 and value 2,which are of type integers,and finds the sum of the two values and return back the result as a web page
-
Applet trusted or not
by default applets are trusted or untrusted?
is it possible to connect with database using applet program using type1 driver? -
When a servlet accepts a call from a client, it receives two objects. What are they?
ServeltRequest: which encapsulates the communication from the client to the server.ServletResponse: which encapsulates the communication from the servlet back to the client.ServletRequest and ServletResponse are interfaces defined by the javax.servlet package.
-
What are the uses of Servlets?
A servlet can handle multiple requests concurrently, and can synchronize requests. This allows servlets to support systems such as on-line conferencing. Servlets can forward requests to other servers and servlets. Thus servlets can be used to balance load among several servers that mirror the same content, and to partition a single logical service over several servers, according to task.
-
What are the advantages using servlets than using CGI?
Servlets provide a way to generate dynamic documents that is both easier to write and faster to run. It is efficient, convenient, powerful, portable, secure and inexpensive. Servlets also address the problem of doing server-side programming with platform-specific APIs. They are developed with Java Servlet API, a standard Java extension.
-
Difference between single thread and multi thread model servlet
Answered by Scott on 2005-05-12 10:39:32: A servlet that implements SingleThreadModel means that for every request, a single servlet instance is created. This is not a very scalable solution as most web servers handle multitudes of requests. A multi-threaded servlet means that one servlet is capable of handling many requests which is the way most servlets should be implemented. A single...
-
Can we call destroy() method on servlets from service method?
">Can we call destroy() method on servlets from service method?
destroy() is a servlet life-cycle method called by servlet container to kill the instance of the servlet. The answer to your question is "Yes". You can call destroy() from within the service(). It will do whatever logic you have in destroy() (cleanup, remove attributes, etc.) but it won't "unload" the servlet instance itself. That can only be done by the container
-
-
How to communicate between two servlets?
ANS: Two ways:1. Forward or redirect from one Servlet to another.2. Load the Servlet from ServletContext and access methods.
-
-
-
-
-
-
In servlets, what is the use of sendredirect(),include( ), forward() ?and in applecation level at what scnario they will be used
I know only that send redircet is of client side. and remaing are severside functions
Servlets Interview Questions
Ans