what are the CGI Programs?
Answers were Sorted based on User's Feedback
Answer / chandra kunchala
CGI:- COMMON GATEWAY INTERFACE.
CGI programs ate process based.
when ever we are sending a reqeust a separate process will
create. for each and every request it will create separete
process. so with respect to memory point of view we 've
loss lot of memory. but in the case of servlets, servlets
are thread based, and it will create onle request and
response objects only, so at the momory point of view this
will not effect.
The major advantage of CGI over servlets is, there is no
data-in-constitency problem as because for each and every
requet it will create process in separate memory so, all
process are independent to each other. But in the case of
servlets thrads are creating in the shared memory, so, there
may be chance of getting data-in-consistency problem..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / dheeraj singh
CGI scrpit is a program that takes data from standard input,
performs some logic and send data to standard output.
The problem with CGI script is that your server must
restart the CGI scritpt everytime a new request is
issued.This means everytime a client communicates,your
server needs to begin a new process.Starting and stopping
processess are expensive operations.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shakir khan
CGI scrpit is a program that takes data from standard input,
performs some logic and send data to standard output.
The problem with CGI script is that your server must
restart the CGI scritpt everytime a new request is
issued.This means everytime a client communicates,your
server needs to begin a new process.Starting and stopping
processess are expensive operations.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / saikiran
CGI is not a programing Language that was giving some
standards we can implement in any of the programing
language implement those low level standard is difficult
for that only servlet gets come into the picture
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pinku pattanaik
CGI:- COMMON GATEWAY INTERFACE.
CGI programs ate process based.
when ever we are sending a reqeust a separate process will
create. for each and every request it will create separete
process. so with respect to memory point of view we 've
loss lot of memory. but in the case of servlets, servlets
are thread based, and it will create onle request and
response objects only, so at the momory point of view this
will not effect.
The major advantage of CGI over servlets is, there is no
data-in-constitency problem as because for each and every
requet it will create process in separate memory so, all
process are independent to each other. But in the case of
servlets thrads are creating in the shared memory, so, there
may be chance of getting data-in-consistency problem..
| Is This Answer Correct ? | 0 Yes | 0 No |
Why HttpServlet class is declared abstract?
What are the different ways we can maintain state between requests?
What is pure servlet?
Why is http protocol called as a stateless protocol?
how the server will know its the same jsp page?
What are the methods in HttpSession and their use?
What are the exceptions thrown by servlets? Why?
What are setComment and getComment methods in Cookies?
How do you invoke a servelt?
What is the difference between 2 types of servlets?
What are the difference between HttpServlet and GenericServlets?
can i call init() method in destroy() method of servlset. ?