Hi Jaco,
i am no expert in kinds of that; do u have access to the SSL server? In case u have, i'd programm a JS script and upload it there. I think u should be able to include it in the head section of your html on the first server and use this to POST the variable to the SSL server.
I'd try a function like:
function sendXML(XMLDoc){
jQuery.ajax({
type: "POST",
data: "xmldoc=" + XMLDoc,
url: "myURL.php",
success: function(response){
console.log(response);
}
});
}
I hope it works; i am curious myself; so please post me, if it works;)