what is the advantage of using Servlets over CGI programming?
Answer Posted / mdsha_asiya
The problem with CGI script is that your server must
restart the CGI script every time a new request is
issued.This means every time a client communicates,your
server needs to begin a new proccess .starting and stopping
processes are expensive operions.
The difference between servlet and CGI scritpt is that CGI
script must be restarted every request where as servlets
are pooled and reused over and over again to service many
requests.This means you don't have to restart a process
every time client request comes over the network.
After servlet is loaded,to handle client request it simply
creates a thread and runs service() of servlet.
servlets are more efficient,powerful,portable,inexpensive
and convinent.
Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Explain the war file?
What is the difference between the http servlet and generic servlet?
What is a web container and what is its responsibility?
What are the advantages of servlets over traditional cgi?
What are all the advantages of servlet over cgi?
What are different Authentication options available in Servlets.
What is cookies in servlet with example?
What is the
When servlet is loaded?
What is servlet and its types?
Elucidate servlet attributes and its scope?
Why do we need a constructor in a servlet if we use the init method?
Which HTTP method is non-idempotent?
What are the two important api's in for servlets?
Explain the role of dispatcherservlet and contextloaderlistener.