我正在尝试在我的项目中实现converse.js以使用Openfire聊天并使用JAXL预先绑定用户。它在我的云(VPS)服务器上运行良好。当我尝试在我的客户端服务器上发布相同的代码时,它无法正常工作。从我的localhost执行相同的操作时遇到同样的问题。不工作意味着预绑定请求保持暂停(待定)一段时间,并以500内部服务器错误结束。
我们检查了服务器配置。似乎很好。任何人都可以建议我如何调试这个吗?
这是我的jaxl配置代码。
$client = new JAXL(array(
'jid'=>$un,
'pass'=>$pwd,
'bosh_url' => 'http://xx.xx.xx.xx/http-bind',
'log_path' => __DIR__ . '/logs',
'log_level' => JAXL_INFO,
'strict' => false
));
提前致谢
-josan
更新
这是我的客户端服务器的jaxl日志。
1.jaxl:180 - 2014-11-05 10:47:47 - dns srv lookup for iz25pkf9c7hz
2.jaxl:189 - 2014-11-05 10:47:47 - including bosh xep
3.jaxl_fsm:61 - 2014-11-05 10:47:47 - calling state handler 'setup' for incoming event 'start_cb'
4.jaxl_fsm:71 - 2014-11-05 10:47:47 - current state 'wait_for_stream_features'
5.xep_0206:109 - 2014-11-05 10:47:47 - posting to http://182.92.156.24/http-bind body
6.<body xmlns="http://jabber.org/protocol/httpbind" content="text/xml; charset=utf-8"
to="iz25pkf9c7hz" route="xmpp:iz25pkf9c7hz:5222" secure="true" xml:lang="en"
xmpp:version="1.0" xmlns:xmpp="urn:xmpp:xbosh" hold="1" wait="30" rid="2280"
ver="1.10" from="bala101@iz25pkf9c7hz">
</body>
7.xep_0206:132 - 2014-11-05 10:47:47 - recving for 2280
8.xep_0206:132 - 2014-11-05 10:47:48 - recving for 2280
9.xep_0206:132 - 2014-11-05 10:47:48 - recving for 2280
10.xep_0206:132 - 2014-11-05 10:47:48 - recving for 2280
.
.
.
.
58854.xep_0206:132 - 2014-11-05 10:47:48 - recving for 2280
.
.
(Its just kept on adding for 5 or 3 mins)
答案 0 :(得分:2)
最后我们找到了解决这个问题的方法 正如我在评论中已经提到的那样,问题是由PHP版本引起的
在JAXL中
#135 $changed = curl_multi_select($this->mch, 0.1);
#137 if($changed == 0 && $running == 0) {
https://github.com/jaxl/JAXL/blob/v3.x/xep/xep_0206.php#L135
curl_multi_select()函数在那里用#135返回(-1)而不是(0)作为PHP版本高于5.3.18时的响应
所以我改变了#137如下
#137 if(($changed == 0 || $changed == -1) && $running == 0) {
这件事解决了我的问题。
参考 https://bugs.php.net/bug.php?id=63411
注意:对于大于5.3.x的PHP版本在使用JAXL进入项目之前进行迁移检查。
以下链接有一个shell脚本,发现不方便
http://blog.waja.info/2013/09/15/migrating-from-php-5-dot-3-x-to-5-dot-4-x-and-finding-problematic-application-code/
希望这可以在某个时候帮助某人。