I want to load one XML file in classic ASP.
I am using
url = "http://www.url-exemplo.com/xml"
success = sXML.LoadXml(url)
My URL path gives me a XML file, but when I write success it gives me false.
What should I do?
This same code works fine in my VB6 code, my variable sucess gives me true. It only happen in my asp page.
Similar post: how to load xml file in classic asp
But the answers don't help me in this issue.