Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用MSXML2.DOMDocument该类解析驻留在 Visual Basic 6.0 中的远程服务器上的 xml 文件的内容。
MSXML2.DOMDocument
我正在使用类的Load方法MSXML2.DOMDocument来传递url。url 的格式为http://<server>/ABC.xml,但是,服务器需要用户凭据才能访问该文件。
Load
http://<server>/ABC.xml
如何使用此类或其他支持类传递用户凭据?
您可以http://<username>:<password>@<server>/ABC.xml在许多情况下使用,也可以使用XMLHTTPRequest帮助对象来发出实际请求。
http://<username>:<password>@<server>/ABC.xml
XMLHTTPRequest
请注意,当您使用 MSXML DOMDocument 对象时,您不会解析任何内容,而是由该对象完成繁重的工作。您所做的只是浏览 DOM 树,相比之下,这是一项微不足道的任务。