Réponse acceptée !
Eurêka!!!
Alors voilà comment j'ai fait (ça en intéressera p-ê d'autres!):
Dans Flash:
//Déclarations:
fichierXML=new XML();
fichierXML.contentType = "text/xml";
fichierXML.xmlDecl = "<?xml version=\"1.0\" ?>";
//Créations de l'arborescence:
...
//Envoi des données pour l'enregistrement:
fichierXML.send("http://localhost/test.asp","_blank");
et dans le fichier asp:
<%
'Déclaration de la variable locale
Dim objDom
'Instantiate the Microsoft XMLDOM.
Set objDom = server.CreateObject("Microsoft.XMLDOM")
objDom.preserveWhiteSpace = True
objDom.async=false
objDom.load(Request)
objDom.save("G:/test.xml")
%>
<html>
<body>
</body>
</html>
PS: vous repérerez facilement ce qu'il y a à changer pour adapter (les 2 chemins d'accès)
Merci à tous ceux qui ont réfléchi un p'tit peu à mon problème!
@+! Samy