Error fatal de PHP: Excepción no detectada 'Excepción' con mensaje
Tengo un script PHP que se conecta a una api y publica información en sus sistemas, pero cuando se intenta conectar, se produce un error fatal:
Fatal error: Uncaught exception 'Exception' with message 'Problem with
'http://apitestserver.co.uk:9000/Service.svc/Items' in
/var/www/html/e/connect_test.php:17 Stack trace: #0
/var/www/html/e/connect_test.php(39):
do_http_request('http://apitest....', 'hello') #1 {main} thrown in
/var/www/html/e/connect_test.php on line 17
Si lo envío a un script PHP que simplemente toma el IP, entonces funciona, pero si lo envío a la API no lo hace. Mi script PHP crea XML y luego lo envía al servidor. Recibía errores, por lo que acabo de crear el siguiente script más pequeño solo para probar la conexión:
function do_http_request($url, $data, $method = 'POST',
$optional_headers = 'Content-Type: application/atom+xml') {
$params = array(
'http' => array(
'method' => $method,
'content' => $data
)
);
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url");
}
$metaData = stream_get_meta_data($fp);
fclose($fp);
if(!preg_match('~^HTTP.*([0-9]{3})~',
$metaData['wrapper_data'][0], $matches)){
throw new Exception('MALFORED RESPONSE - COULD NOT UNDERSTAND HTTP CODE');
}
if (substr($matches[1], 0, 1) != '2') {
throw new Exception('SERVER REPORTED HTTP ERROR ' . $matches[1]);
}
return $response;
}
$data = 'hello';
$paul =
do_http_request('http://apitestserver.co.uk:9000/Service.svc/Items',$data);
echo $paul;
Si cambio la URL a un script simple en otro de nuestros servidores, simplemente toma la IP de la conexión entrante y la devuelve:
$ip=$_SERVER['REMOTE_ADDR'];
echo 'IP equals = ' . $ip;
Entonces funciona bien sin errores.
Actualización -
con errores, emite la siguiente advertencia, probablemente porque el script no está enviando la información correcta a la API
Warning: fopen(http://apitestserver.co.uk:9000/Service.svc/Items)
[function.fopen]: failed to open stream: HTTP request failed! HTTP/1.1
500 Data at the root level is invalid. Line 1, position 1.
También tenga en cuenta que puedo acceder a la multa del servidor api usando fiddler para enviar elementos creados manualmente, es decir, cuando este script intenta conectarse y enviar datos hay un problema. Escribí otra secuencia de comandos rápida que conecta e imprime la respuesta predeterminada (un feed RSS de los elementos enviados)
Cuando ejecuto el script del conector 'principal', se producen los siguientes dos errores
Warning: fopen() [function.fopen]: php_network_getaddresses:
getaddrinfo failed: Name or service not known in
/var/www/html/e/sequence.php on line 65
Warning: fopen(http://apitestserver.co.uk:9000/Service.svc/Items)
[function.fopen]: failed to open stream: Operation now in progress
in /var/www/html/e/sequence.php on line 65