we are doing a small tracking system to track some user requests and seem to be getting confusion over which session is active for a given browser
case: on domain A, a webserver (ASP unfortunately ) has a link wrapped within a link. that wrapper link sends a GET/POST to a server on domain B, a php server, that server records the request, then either forwards the GET through a redirect or creates a page with an autoload form that captures the request and ends up forwarding the POST to the original server
all of this works fine with the first request. keep in mind the requests are all really coming from the browser anyway. the second time we do this on domain A, the browser gets associated with a new session on server B. same browser, domains are the same, but it is now tagged with a new session.
session has not been destroyed, it has not timed out.
is there a problem in a situation like this? have done work with PHP before where we left a domain, went to another and was still logged in with an active session on return many times
have not done redirects to other domains or onload scripts to other domains in that context however
I know this is fairly vague, but anyone have any ideas why the session is lost? data from a previous session still appears to be there, dang nab it. so teh server is recognizing the browsers return