tim_
01-23-2008, 06:55 AM
Hi,
I was hoping someone could point me in the right direction.
I'm new to XML though I am trying to learn it. My problem is this
I know how to send requests in the form of
Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
strHTML = "url?variables"
objXmlHttp.open "GET", strHTML, False
objXmlHttp.send
statusresponse = objXmlHttp.ResponseText
Set objXmlHttp = Nothing
to a recipient, However im trying to understand what happens at the other end - how the variables are stripped out of the 'strhtml' but mainly how a response is passed back to the sender.
Any help or guidance on this would be greatly appreciated
Thanks
Tim
I was hoping someone could point me in the right direction.
I'm new to XML though I am trying to learn it. My problem is this
I know how to send requests in the form of
Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
strHTML = "url?variables"
objXmlHttp.open "GET", strHTML, False
objXmlHttp.send
statusresponse = objXmlHttp.ResponseText
Set objXmlHttp = Nothing
to a recipient, However im trying to understand what happens at the other end - how the variables are stripped out of the 'strhtml' but mainly how a response is passed back to the sender.
Any help or guidance on this would be greatly appreciated
Thanks
Tim