var url = "www.broadbandmap.gov/.../nation";
// WORKS
Comm.makeWebRequest(url, {"format" => "json"}, {}, method(:onReceive));
// FAILS for XML with responseCode "Failed to load Error: -400"
Comm.makeWebRequest(url, {}, {}, method(:onReceive));
For the XML scenario I have tried all sorts of different options, but always fails. Anyone who can make an working example?