I have an xml being sent to page.asp, this xml contains username and password that i need to extract before processing into a database. But before i can do all that I'm wondering how i can begin to use the xml when it is post from an external server to mine, do i need to create an object to pass the xml file into?
I was reading and found this:
set xmldoc = Server.CreateObject("Microsoft.XMLDOM")
xmldoc.load(Request)
I not sure if i need the above and if so how to really use it. Will someone please explain the jist of how a remote server sends an xml file and how one can begin to use this xml to retrieve the username and password.
This is part of the schema that contains the username and password:
Thanks a bunch.
I was reading and found this:
set xmldoc = Server.CreateObject("Microsoft.XMLDOM")
xmldoc.load(Request)
I not sure if i need the above and if so how to really use it. Will someone please explain the jist of how a remote server sends an xml file and how one can begin to use this xml to retrieve the username and password.
This is part of the schema that contains the username and password:
Code:
<?xml...
<prop xmlns:xsi="[URL unfurl="true"]http://www.w3.....[/URL]
<code chainID="RK" companyID="DS" propertyID="1234">
<user username="test" password="test />
</code>
<rates>
<rate start=......
</prop>
Thanks a bunch.