Currently Being Moderated
Apr 27, 2004 8:05 AM
Has anyone ever called an ASP from a process map? My code is written in BasicScript but I'm having problems with the XMLHTTP object properties and methods not being recognized. My snippet of code that isn't working is as follows:
---
Set objXML = CreateObject("Microsoft.XMLDOM")
objXML.async = False
If objXML.Load(strASPLocation) Then
Set objNodeList = objXML.getElementsByTagName("USER")
Else
msgbox "XML Load failed. Please ensure the following ASP page is valid:" & chr(13) & strASPURL
End If
---
It fails on the objXML.asyc = False line as well as on the objXML.Load line and the objXML.getElementsByTagName line. Any ideas?
Thanks.