I am trying to read an XML-file from another server. However the the company that's hosting me seems to have turned of the file_get_contents function from retrieving files for files from other servers (and their support is not very bright and it takes forever for them to answer). So I need a work around in some way.
This is my current code
$url = urldecode( $object_list_url );
$xmlstr = file_get_contents ( $url );
$obj = new SimpleXMLElement ( $xmlstr, LIBXML_NOCDATA );