emmetmurray
Programmer
Hi,
Can anyone tell me how to download the data from a xml http feed? Preferably to csv,text, xml file.
I need to get the info from my http xml feed into a sql server database. i have created a mapping scheme for a xml files on my local machine and it works fine, but i need to be able to somehow get the info from my http xml feed into the database, or at least onto a local machine, and i can then run my script.
This is what i've been using so far, but i need to replace "products.xml" with a http url
Set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkLoad")
objBL.ConnectionString = "provider=SQLOLEDB.1;data source=IP;database=products;uid=sa;pwd=somepassword"
objBL.ErrorLogFile = "c:\error.log"
objBL.Execute "c:\xml\productmapping.xml", "c:\xml\products.xml"
Set objBL = Nothing
Any advice would be great.
Thanks
Can anyone tell me how to download the data from a xml http feed? Preferably to csv,text, xml file.
I need to get the info from my http xml feed into a sql server database. i have created a mapping scheme for a xml files on my local machine and it works fine, but i need to be able to somehow get the info from my http xml feed into the database, or at least onto a local machine, and i can then run my script.
This is what i've been using so far, but i need to replace "products.xml" with a http url
Set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkLoad")
objBL.ConnectionString = "provider=SQLOLEDB.1;data source=IP;database=products;uid=sa;pwd=somepassword"
objBL.ErrorLogFile = "c:\error.log"
objBL.Execute "c:\xml\productmapping.xml", "c:\xml\products.xml"
Set objBL = Nothing
Any advice would be great.
Thanks