being at root level http://mydomain.com, I stored a cookie
cookie[:login]
I can see the cookie in my browser
site: mydomain.cm
login
_myapp_session
upon redirection, to url => http://test.mydomain.com ,
I would like to access this cookie, cookie[;login], but as I maintain
sessions at subdomain level, I have
site: test_domain.com
_myapp_session
how can I access the cookie[:login] ?
thanks for any clue …