I am going through some of the links like this SO question and found that a new action context is created for every new Action request.
suppose if there is a request to an Action A, a new ActionContext AC1 is created. I save something like ("xxx","yyy") into the session map, which is in the AC1.
Then there is a request to an Action B by the same user. If a new ActionContext AC2 is created, would it somehow get the session object from the AC1 or would be empty?
Isn't the session object global across multiple requests from same user from same browser?