Qualcuno mi spiega come deve essere la pagina asp (leggoXml.asp), situata su un altro server, che riesce a leggere il file xml che io creo sul mio server e poi passo?
Ci sto provando in tutti i modi ma non ci riesco!!!!!![]()
![]()
<%
codice = "QWERTZ"
UserId = "pippo"
Password = "pluto"
XmlText= "<?xml version=""1.0""?>"
XmlText=XmlText & "<codice>" & codice & " </codice> "
XmlText=XmlText & "<UserId>" & UserId & " </UserId> "
XmlText=XmlText & "<Password>" & Password & " </Password> "
url = "http://miosito/leggoXml.asp"
Set objXML = CreateObject("MSXML2.ServerXMLHTTP")
Set objLst = CreateObject("MSXML2.DOMDocument")
objXML.Open "POST", url, False
objXML.setRequestHeader "Content-Type", "text/xml"
objXML.send (XmlText )
%>