Senhores, Em uma maquina apache/php/window xp profissional, ao tentar utilizar um webService obtenho a mensagem abaixo: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond" Uma outra maquina function, sendo a única diferença "visivel" é que esta é XP Home Edition. alguém tem alguma ideia? Já procurei no google e não consegui localizar a solução apesar de ser algo "comum". Grato pela atençao, Alan Cândido Código usados para teste: Primeiro codigo $wsdl = "http://www.webservicex.net/currencyconvertor.asmx?wsdl"; echo "<strong>WSDL file:</strong> ".$wsdl."<br>\n"; $options = Array('actor' =>'http://schema.jool.nl', 'trace' => true); $client = new SoapClient($wsdl,$options); echo "<hr> <strong>Result from getAll call without restrictions:</strong><br>"; $res = $client->ConversionRate(); print_r($res); echo "<hr><strong>Raw Soap response:</strong><br>"; echo htmlentities($client->__getLastResponse()); Segundo codigo: $url = "http://www.google.com"; $request = file_get_contents($url);