allora...ho queste due righe di codice: (i domini sono cambiati per ovvi motivi)

$file = file_get_contents('http://www/prova.xml');
$xml = simplexml_load_string($file);

var_dump($xml);

e vedo a schermo l'array con tutto il contenuto dell'xml;
puntando invece ad un indirizzo tipo:

$file = file_get_contents('http://www/getXML.aspx?nro=000001&cgn=xxx');
$xml = simplexml_load_string($file);

var_dump($xml);

mi viene questo errore:

[function.file-get-contents]: failed to open stream: HTTP request failed!


....che posso fare???