Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/02/2006, 06:50
raul123
 
Fecha de Ingreso: septiembre-2005
Mensajes: 94
Antigüedad: 18 años, 6 meses
Puntos: 0
Hola a todos,
Pretendo establecer una conexión con el servidor de messenger.hotmail.com de esta manera:


$server = 'messenger.hotmail.com';
$port='1863'
$this->socket = fsockopen($server,$port,$errno, $errstr,20);

Pero cuando intento conectar me da fallo de que no se pudo conectar.
He contactado con el servicio técnico de mi hosting y me han dicho que no tengo acceso al puerto 1863, sino que tengo que hacerlo a través de un proxy. Esto es exactamente lo que me dijeron

Cita:
We recently enabled outgoing http and https connections for our web hosting customers. These connections will take place via a proxy server, which will be completely transparent for customers making only http (port 80) connections. Applications that need to make https connections (port 443) will need to be made “proxy aware”. This will require additional coding to varying degrees, depending on the application. These customers will need to know the ip address and port of the proxy server in order to correctly modify their code. The ip of the proxy server is 64.202.165.130 and connections will be made on port 3128.
¿Cómo se puede establecer una conexión con el servidor que quiero , al puerto 1863?