Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

have error in get query, why?

Status
Not open for further replies.

sal21

Programmer
Apr 26, 2004
422
IT

based this link.

i use:
....

Dim XMLQUERY As String
Dim myXML As New MSXML2.DOMDocument
Dim nodes As IXMLDOMSelection
Dim TheNode As IXMLDOMNode

XMLQUERY = "
With CreateObject("MSXML2.XMLHTTP")

.Open "GET", XMLQUERY, False
.send

myXML.LoadXML .responseText 'raw xml

Debug.Print .responseText

End With

in Debug.Print .responseText have:

Errore nel passaggio dei parametri!

why????
 
We can't tell you. This is not a VB error. It is an error being returned from the web service you are trying to use. You need to study their REST API documentation to check valid parameters.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top