Link to home
Start Free TrialLog in
Avatar of surfsista9
surfsista9

asked on

ASP XML Recordset to COM Object

I need to pass an asp xml recordset to a com object so I can write it out to a remote file server as a text file. (need com+ to run under a service account in order to access a remote server)

Can this be done by setting an rs property in the com object to the xml rs in asp or can I pass it as a parameter in a function call to the com object?

I've tried the function but this fails.

I'm not even sure I can do this. I can pass an xml stream from vb to asp but now need to pass it from asp to vb dll.
ASKER CERTIFIED SOLUTION
Avatar of deighc
deighc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Leo Eikelman
Leo Eikelman

Easiest solution would be:

Pass the XML as a String parameter to a funcition in the com object.

Then create a Scripting.FileSystemObject to write the xml string to a file.

cheers,

Leo
Avatar of surfsista9

ASKER

Gave points to deighc because his answer is closest to the soluiton.

I passed the rs as a variant to a property and this worked...very easy. did not have to recreate the dom.