Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Q : In session created by server with client(browser) How
can server find that request coming is belong to new
session OR belong to session that is timeout.

Answers were Sorted based on User's Feedback



Q : In session created by server with client(browser) How can server find that request coming is b..

Answer / vanita

when client request for the first time, container generates
a session id for that perticular user. server process the
request and sends the response and also sends that sessionID.

for next request from the same user, that session id must be
sent back to the server so that server can fetch the
sessionID from request and match with previously generated
IDs , if match then it associates this next request with
the previous session.

This transfer of sessionId b/w server and user can be done
via 2 ways -

1. By cookies
2. By URL rewritting

In case if browser doesnt support cookies, then only the
second method is used.

Is This Answer Correct ?    4 Yes 0 No

Q : In session created by server with client(browser) How can server find that request coming is b..

Answer / subhash

getSession() returns a session regardless of there's apre-
existing session.Since we always get back an HttpSession
instance back from the method,the only way to know if the
session is new is to ask the session itself:

HttpSession session=request.getsession();

if(Session.isNew())
{
out.println("A NEW SESSION");
}
else
{
out.println("WelCOme Back");
}

Is This Answer Correct ?    2 Yes 0 No

Q : In session created by server with client(browser) How can server find that request coming is b..

Answer / raj

While client is requesting to server, in requested body
session id will go to server. then the server will treated
as old client is connecting/.

Is This Answer Correct ?    2 Yes 1 No

Q : In session created by server with client(browser) How can server find that request coming is b..

Answer / rajib

import javax.servelet.*;
public MyServelet extends HttpServelet{
public void doGet(HttpServeletRequest
req,HttpServeletResponse res)throws ServletException,IO
Exception{
res.setContentType("text/html");
PrintWriter out=res.getPrintWriter();
out.println("for trac session0");
HttpSession sess=req.getSession();
if(sess==null){
out.println(Old session not exist );
}else{
HttpSession session=request.getSession(true);
out.println("new Session Created.");
}}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JSP Interview Questions

How does a jsp work?

0 Answers  


Differentiate between include directive and include action.

0 Answers  


What is welcome file list?

0 Answers  


What is server side programming language?

0 Answers  


What are jsp and servlets?

0 Answers  


What jsp lifecycle methods can I override?

0 Answers  


What is session scope?

0 Answers  


Is jsp platform dependent?

0 Answers  


What is a javaserver pages (jsp)?

0 Answers  


Are dialogue tags necessary?

0 Answers  


How can I implement a thread-safe jsp page? What are the advantages and disadvantages of using it?

0 Answers  


How we can disable session in jsp?

0 Answers  


Categories