hmmm, what you probably want to do is setup your container so that the
session cookies are set for a wider domain, such as *.mydomain.com
instead of www.mydomain.com or whatever is used for logins. that way it
doesn't matter what the subdomain is, you'll always see the cookie sent
back with the request.
the drawback of course is that you would have to be careful about cookie
conflicts since any other app on that domain could potentially try to
use the same cookie.
-- Allen
Richard Jones wrote:
Hi,
I've written a custom WeblogRequestMapper which enables different
blogs to run under different domains. All works great except that on
the users blog the $utils.isUserAuthorizedToAuthor() no longer
recognizes if a user is logged-in or not (used in the #showPageMenu()
marco).
I understand this would be related to the fact the domain name is
different from the Roller UI... and was hoping that someone might be
able to give me an idea about how I could rectify this.
Thanks,
Richard