I'm trying to understand the uniqueness and scope of a JSessionId, as it relates across multiple, unreleated domains.
I've read Under what conditions is a JSESSIONID created?, and still have some questions --
Specifically:
If a user visits www.app1.com
, and that app makes a call to www.app2.com
to load data, are two jsessionId's created - one for each domain?
Likewise, when the call goes out to www.app2.com
, is any information about the jsessionid from www.app1.com
passed along?
What impact do redirects have on this? (Eg., requesting http://app1.com/login.jsp
redirects to http://app2.com/login.jsp
)