hey there !
In my imagination it sound kinda imposible, but I've read that it's possible so im going to ask you guys anyway.
I'd like to move the session of a user across various subdomains, the detail is that those subdomains are on different servers.
sub1.example.com is on Happy land and sub2.example.com is on wonderland
however they are both under the same domain (example.com) so they can share cookies, I already tried setting the session cookie domain to ".example.com" but when I move from one server to another the session is completely empty.
I know that sessions work in a way that they stay stored within the server, so to me it's completely sensless to think that the session would magically go from one server to another using only a cookie. Is there any work around that you suggest?
I could get the hash and then have sub2.example.com server ask via SOAP or something sub1.example server to give him the data, but then separating those servers to lower the load on them would render useless :/
any ideas or comments ?
thanks !🙂