I'm trying to load an XML from a URL however it's not loading correctly using fluidxml
URL is https://www.yourstaging.eu/products.xml
$doc = \FluidXml\FluidXml::load('https://www.yourstaging.eu/products.xml');
$productsNode = $doc->query("//products");
$productNodes = $doc->query("//products/product");
$loadedData = $doc->xml();
Both queries return 0 nodes and the resulting xml is empty.
I'm not sure why this is happening.
xmlstarlet finds the file is valid xml.