masterlodi
MIS
I have an application that sends an XML document via HTTP POST to my application.
But the following code returns with
Any ideas?
But the following code returns with
Code:
Object required: 'MyNode'
Any ideas?
Code:
set docReceived = CreateObject("Microsoft.XMLDOM")
docReceived.async = False
docReceived.load Request
MyXpath = "/message_delivery/name/first_name"
Set MyNode = docReceived.selectSingleNode(MyXpath)