I understand that sessions in a browsers works by either the cookie, url or other browser->server protocol exchange...
From other answers in this post and related links this can be understood.
Does Flash Player transmit session cookies automatically?
However, when using an flash/air movie inside flash cs6 (or just air stand alone), neither of this run inside a browser.
So I believe (according to answers) that it should use some user agent to create this match up between client and server.
A good example in our program is that running inside the CS6 environment we are able to modify a $_session variable in php using URLLOADER.
By other side, later, the same $_session is modified this time using AMF-PHP framework, obtaining and changing the values previously set.
So, is anyway to see this initial matching in this case? between the debuggin cs6 movie and the server, maybe using Charles proxy?
What do you recommend?
Thanks.