I read the below sentence somewhere..
"Any object bound into a session is available to any other
servlet that belongs to the same ServletContext "
Can anyone tel me if ithe above statement is correct ?
if one client sends a request to some servlet and sets some attribute in session object , then second client sends the request to same servlet (or some other servlet belonging to same servlet context) , how can a second client access attribute in the session object set by first client , as second client wil have a different session with the server.?