What happens, when client requests for server object, which
is not yet loaded into the memory?
Answers were Sorted based on User's Feedback
Answer / nagaraju
u will get 404 error means unavailable Exception
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / sandeep m
when a class is not yet loaded by server. If the server is
receiving the request for such class for the first time
then it loads the class instantiates and serves the
request. All this process takes time and request processing
of first request for that class is delayed. Further
requests for the class will be processed fast.
Is This Answer Correct ? | 0 Yes | 2 No |
How do you create a cookie using servlet?
Write a program to show the functionality of doget and dopost method?
How can you push data from an Applet to a Servlet?
Is Servlet Class Thread safe?????? How to make servlet Thread safe ???
Explain how does JSP handle run-time exceptions?
What is the disadvantage of cookies?
How can we create deadlock situation in servlet?
how this statement works..? public void service(HttpServletRequest request,HttpServletResponse response)
What if we pass negative value in load-on-startup?
Why the concept of single thread model interface is used?
What is java servlet?
How do I use cookies to store session state on the client?