Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Receive XML Document in ASP

Status
Not open for further replies.
Jan 20, 2005
65
GB
I have an application that sends an XML document via HTTP POST to my application.

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)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top