I've never had to do this BUT here is goes...
Get the session id for the HTTP server
use
session_id();
pass it to the HTTPS server via URL or Hidden Form Input
when you want to kill the old session call a php script on the HTTP server that will accept the session id and set it with the session_id() function.
Start the session and then destroy it.