Ciao a tutti,
sto cercando di richiamare una pagina asp esterna al mio domino e farmi restituire un xml, ma non c'é verso.

Il codice è il seguente:

Public Function getXml(ByVal tmpfile As String, ByVal Transformer As String, ByVal Position As String) As String

Dim xml
xml = HttpContext.Current.Server.CreateObject("Microsoft .XMLDOM")
xml.async = False
xml.load("http://" & tmpfile)
Return xml.responseText & "||" & Transformer & "||" & Position

End Function

Dove sbaglio?