Have a question for you I was hoping you could answer for me. You have already been a terrific help to me in getting this worked out (
http://p2p.wrox.com/topic.asp?TOPIC_ID=54431)
But here is my problem. Everything I have set up when just the xml packet is sent and I parse it using the namespace, etc. However, and this may be a stupid question, I am unable to load the Request in the parser now because they are including other variables in a manner such as this:
User=user&Password=pass&Message=<?xml version="1.0" encoding="UTF-8"?>
So obviously when I attempt to load it and parse it does not work. How do I remove these vars, or ONLY load the "Message=" variable? Because right now I am simply doing this:
set xmlObj = Server.CreateObject("Msxml2.DomDocument.4.0")
xmlObj.async = False
xmlObj.validateOnParse = False
xmlObj.setProperty "SelectionLanguage","XPath"
ns = "www.detroittradingexchange.com/BuyerMessages"
xmlObj.setProperty "SelectionNamespaces","xmlns:ns='" & ns & "'"
bLoaded = xmlObj.load(Request)
If bLoaded Then ' It loaded and validated ok, continue..
But because of the other request variables it is not loading and I can not parse the document.
UGH...
Anything you could provide would be helpful - thank you.