Hi Peeps.

Is there ANY way I can get a DOM script in VB to get XML data from an internal IP address or DNS?

My current DOM script works perfectly with sites on the web, but I simply cannot find any script or changes to the current script to make it resolve both internal and external XML files.

Script:
VB Code:
  1. Dim xDoc As MSXML.DOMDocument
  2. Dim objPlugIn As Object
  3.    Dim strResponse As String
  4.    Dim Indentity As String
  5. Set xDoc = New MSXML.DOMDocument
  6. xDoc.async = False
  7. newticketinqueue = False
  8. If xDoc.Load(<ADDRESS HERE>) Then
  9.    ' The document loaded successfully.
  10.    ' Now do something intersting.
  11.    DisplayNode xDoc.childNodes, 0
  12.    error = False

Can anyone help?

Ta.