Date:  04/22/2002 12:08:17 AM Msg ID:  000581
From:  Oleg Goncharuk Thread:  000581
Subject:  How to get posted XML source code?
Recently we started to use FoxWeb to generate XML source for web services. But to get most of this technology we would like to get XML source code posted by MSXML2.XMLHTTP like this:
 
xmlDoc = CreateObject("Msxml2.FreeThreadedDOMDocument.4.0")
xmlhttp = CreateObject("Msxml2.XMLHTTP.4.0")
xmlHTTP.open("POST","http:/somehost/somefile.asp", .F.)
xmlHTTP.send(xmlDoc)
 
In ASP we could get XML source like this (JScript):
 
var xmlDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument.4.0");
xmlDoc.load(Request);
var sXml=xmlDoc.xml;
 
Is there a way to get XML posted this way in FoxWeb script (I mean ANY way, not  just an ASP-like way)?
 
/Oleg