Connecting Tech Pros Worldwide Help | Site Map

Cookie in frame

Super Mango
Guest
 
Posts: n/a
#1: Jan 26 '06
Hi,

I have this login that works fine when the page is presented as-is, but
I want to allow other site owner to put any page from my site in a
frame in their own site.

The thing is that when the page is called from a different domain, the
cookie is not sent to the server.

What can I do?

Thanks,

Erwin Moller
Guest
 
Posts: n/a
#2: Jan 26 '06

re: Cookie in frame


Super Mango wrote:
[color=blue]
> Hi,
>
> I have this login that works fine when the page is presented as-is, but
> I want to allow other site owner to put any page from my site in a
> frame in their own site.
>
> The thing is that when the page is called from a different domain, the
> cookie is not sent to the server.
>
> What can I do?[/color]

Nothing simple.
Cookies are NOT send crossdomain.
Think about it when that was possible:
1) Every visit to any site would include your WHOLE set cookies. A waste of
bandwidth
2) sucurity. If ANY site could retrieve all your cookies, then they could
easily hijack your current session to somewhere.
You don't want that.

So: If you want to propagate your cookie to another domain, send it yourself
explicitly.
like (GET):
http://www.otherdomain.com/somescrip...jksdahfjkasdhf

(or via POST)

I am not sure what the other site wants to do with the cookie, but that is
the way to send it.
[color=blue]
>
> Thanks,[/color]


Regards,
Erwin Moller
Closed Thread