w3schools tutorial read make how ejemplo attribute xml vbscript asp-classic serverxmlhttp

xml - tutorial - xpath attribute



Publique XML en la página asp clásica y recupere los datos de la publicación en la página (1)

Dim stringXML, httpRequest, postResponse stringXML = "<?xml version=""1.0"" encoding=""UTF-8""?><School><Class>5</Class></School>" Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0") httpRequest.Open "POST", "http://www.mywebpage/TestVBScript/RecieveRequest.asp", True httpRequest.SetRequestHeader "Content-Type", "text/xml" httpRequest.setRequestHeader "Content-Length", Len(stringXML) httpRequest.Send stringXML If httpRequest.status = 200 Then TextResponse = httpRequest.responseText XMLResponse = httpRequest.responseXML StreamResponse = httpRequest.responseStream Else '' Handle missing response or other errors here End If Set httpRequest = Nothing

Para publicar datos en la página asp clásica estoy usando el código siguiente

Dim stringXML, httpRequest, postResponse stringXML = "<?xml version=""1.0"" encoding=""UTF-8""?><School><Class>5</Class></School>" Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0") httpRequest.Open "POST", "http://www.mywebpage/TestVBScript/RecieveRequest.asp", True httpRequest.SetRequestHeader "Content-Type", "text/xml" httpRequest.Send stringXML

Ahora quiero obtener el valor de stringXML en la página RecieveRequest.asp. Para que pueda procesar mi XML y devolver la respuesta

Cualquier ayuda será apreciada. Gracias por adelantado