What is the use of Application Object and Session Object in
JSP?

Answers were Sorted based on User's Feedback



What is the use of Application Object and Session Object in JSP?..

Answer / krrish

Application object is used to maintain the information
related to the current webapplication which is running in
the webcontainer.

Session object is used to maintain the information related
to the browser from which the user gets the request.

Is This Answer Correct ?    42 Yes 2 No

What is the use of Application Object and Session Object in JSP?..

Answer / pratheeka reddy

Session represents the HTTP session object associated
with the request,obtained from request getSession().
Application represents the servletcontext object for
storing persistent data for all clients.
The difference between session and application is that
session is tied to one client,but application is for all
clients to share persistent data.

Is This Answer Correct ?    22 Yes 3 No

What is the use of Application Object and Session Object in JSP?..

Answer / guest

Application Object is limited to with in the WebApplication

Session is limited to the single client

Is This Answer Correct ?    22 Yes 7 No

What is the use of Application Object and Session Object in JSP?..

Answer / hazarath k

When a Java bean object is used in while processing
multiple requests and the information is specific to the
particular client, then we place that Java been object in
Session.

When a Java bean object is used in while processing
multiple requests and the information is not specific to
the any client, then we place that Java been object in
Application.

Is This Answer Correct ?    16 Yes 3 No

Post New Answer

More JSP Interview Questions

What are the directives in jsp?

0 Answers  


How can I set a cookie and delete a cookie from within a jsp page?

0 Answers  


how to maintain sessions in jsp?can you tellme the methods.

16 Answers   IBM, Scope International, TCS,


What are the standard actions available in jsp?

0 Answers  


Explain the difference between servlet and jsp?

0 Answers  






What program opens a jsp file?

0 Answers  


What is jsp processing?

0 Answers  


What are jsp lifecycle methods?

0 Answers  


Can we write a class inside Jsp?

1 Answers  


Which two interfaces does the javax servlet jsp package have?

0 Answers  


how can i update the marque in jsp without changing the sourse code

0 Answers  


How does JSP handle run-time exceptions?

2 Answers   IBM,


Categories