I have this url which get list of objects as a xml
I want to call this using only javascript I try this
function loadXMLDoc() {
xhttp.open("GET", "https://test/ab", true);
}
xhttp.send();
}
please help
It gives status correct and ready state correct but it give me the responseText is empty
but when I try this url on my browser it works fine