xmpphp测试openfire发布信息

xmpphp测试openfire发布信息

1.先下载xmpphp,地址:https://code.google.com/p/xmpphp/downloads/list

2.编写php脚本。

<?php
    require('XMPPHP/XMPP.php');  

    $conn = new XMPPHP_XMPP('csdn.shimiso.com', 5222, '[email protected]',
    'niuyufu123', 'xmpphp', 'csdn.shimiso.com', $printlog = true,
    $loglevel = XMPPHP_Log::LEVEL_INFO);
    try {
        $conn->connect(10);
        $conn->processUntil('session_start');
        $conn->presence();
        $conn->message('[email protected]', 'Hi! This is a test message for PHP API of Gtalk~');
        $conn->disconnect();
    } catch(XMPPHP_Exception $e) {
        die($e->getMessage());  //异常
    }
?>


成功截图:



可能遇到的问题:

1269283038 [INFO]: Connecting to tcp://csdn.shimiso.com:5222

1269283038 [ERROR]: Could not connect.

这时要检查openfire的配置,最重要的是关闭selinux及iptables.


官方给出了多种语言的api,大家可以下载看看。

http://xmpp.org/xmpp-software/libraries/

热心网友提供成套解决方案:

http://www.luacloud.com/2012/xmpphpstrophejsopenfire.html

你可能感兴趣的:(xmpphp测试openfire发布信息)