No, I'm pretty sure the Stream is required, whether it's explicitly created
or implicitly. Just to be sure, you can try:
xmldoc = new ActiveXObject("msxml2.domdocument")
xmldoc.loadXML(strXML)
rs.Open(xmldoc)
I'm pretty sure an implicit Stream object is used here, but I may be wrong.
Bob Barrows
Post by Kevin SheaThanks Bob, that's exactly the issue.
I am essentially using the stream object to convert XML into an ADO
recordset. Is there another way to do this without the stream object?
stream = new ActiveXObject("adodb.stream");
stream.Open;
stream.WriteText(strXML);
stream.Position = 0;
rs = new ActiveXObject("adodb.recordset");
rs.Open(stream);
stream.Close;
stream = null;
Post by Bob Barrows [MVP]Post by Kevin Shea"Automation server can't create object"
for some of our Windows clients (XP and 2000), at the following line
stream = new ActiveXObject("adodb.stream");
This error just started occurring. Any thoughts?
http://support.microsoft.com/default.aspx?scid=kb;en-us;870669
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"