Hi,
If i’m not mistaken, i think the query should be loaded in this manner instead:
Dim xmlhttp
Set xmlhttp = server.CreateObject(“Microsoft.XMLHTTP”)
method = “GET”
url = http://localhost/tamino/xpack/anketlist?_xql=anket[id=‘1’]
xmlhttp.open method,url,false
xmlhttp.setRequestHeader “Content-Type”,“application/x-www-form-urlencoded; charset=UTF-8”
xmlhttp.send(data)
.
.
.
xmlDoc.load(xmlhttp.responseXML)
This should work.
rgds,
Ian
#Tamino#API-Management#webMethods