0

我正在使用带有 PHP 的 SMPP 来发送和接收消息。我在尝试发送消息时收到此错误。这是什么原因,我该如何发送消息?谢谢。

pfsockopen() [function.pfsockopen]: unable to connect to sms.korewireless.com:2777 (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. )
4

2 回答 2

0

SMPP 通常需要从您的服务器绑定到他们的服务器。这可能包括将 IP、用户/通行证等列入白名单...我会联系他们的服务台,因为这听起来是您或他们的配置错误。

于 2009-10-13T12:17:05.957 回答
0

您的程序尝试连接到远程服务器,但在超时之前无法连接。

这可能有很多原因:服务器可能没有侦听此端口,您的防火墙禁止访问它等等。

尝试使用 telnet 连接到该服务器以查找问题所在。

于 2009-10-13T07:40:34.693 回答