Carlos
07-27-2000, 02:36 PM
Hi. I'm sorry, my english is bad.
We are sending a recordset to the server with the XMLHTTP send method. At
the server, we receive the file, persist it and then, we open the recordset
and process it with the followind code.
Do you know how to directly open the received XML data, without persist it
to a file?
(We currently use ADO 2.1 on the server)
Thank you in advance
Carlos Tealdi
Soteica
Argentina
<%
Set RS = Server.CreateObject ("ADODB.RecordSet")
Set oXML = Server.CreateObject ("Microsoft.XMLDOM")
oXML.load(Request)
file = Server.MapPath ("\") & "\Sist1.xml"
oXML.Save(file)
RS.Open file, , adOpenForwardOnly, adLockReadOnly, adCmdFile
Do while
...
Loop
%>
We are sending a recordset to the server with the XMLHTTP send method. At
the server, we receive the file, persist it and then, we open the recordset
and process it with the followind code.
Do you know how to directly open the received XML data, without persist it
to a file?
(We currently use ADO 2.1 on the server)
Thank you in advance
Carlos Tealdi
Soteica
Argentina
<%
Set RS = Server.CreateObject ("ADODB.RecordSet")
Set oXML = Server.CreateObject ("Microsoft.XMLDOM")
oXML.load(Request)
file = Server.MapPath ("\") & "\Sist1.xml"
oXML.Save(file)
RS.Open file, , adOpenForwardOnly, adLockReadOnly, adCmdFile
Do while
...
Loop
%>