Hi
I am trying to do something similar. I am sending XML to the server using JavaScript in IE. I want to retrieve the XML code at the server end using PHP, and I have tried both the suggestions in the reply to this request and neither work.
$HTTP_RAW_POST_DATA is empty, and getallheaders() just doesn't seem to return my XML code (although it does correctly return the content-length as 3814 bytes). Is there some trick I might be missing - is there some pre-requisite that is required to get either of the above suggestions working?
I haven't got the first clue as to what I need to do to extract the XML code from the HTTP header. If it helps, here is the JavaScript code at the client end:
xmlHttp = new ActiveXObject("Microsoft.xmlhttp");
xmlHttp.open('POST', 'submit_calendar.php', false);
xmlHttp.send(msXML.xml);
Thanks very much for any help you can give me,
Gary