I collect some stuff in my application session. I then need to redirect to another domain(not subdomain) run by the same ruby application instance (as it needs to be an SSL certificate domain). I can rebuild my application session bit by bit but it would be DRYer if I pass the session_id into the SSL domain as a param on the redirect and then "switch the session" to the new domain by invoking a before_filter on the SSL protected actions to pull the correct session. Set the new cookie and so forth
Anyone any ideas on how to do this or is there already a plugin to do this?
Cheers.
O.