热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

xmpphp测试openfire发布信息

xmpphp测试openfire发布信息1.先下载xmpphp,地址:https:code.google.compxmpphpdownloadslist2.编写php脚本。<?php

xmpphp测试openfire发布信息

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

2.编写php脚本。

    require('XMPPHP/XMPP.php');  

$cOnn= new XMPPHP_XMPP('csdn.shimiso.com', 5222, 'admin@csdn.shimiso.com',
'niuyufu123', 'xmpphp', 'csdn.shimiso.com', $printlog = true,
$loglevel = XMPPHP_Log::LEVEL_INFO);
try {
$conn->connect(10);
$conn->processUntil('session_start');
$conn->presence();
$conn->message('richard@csdn.shimiso.com', '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


推荐阅读
author-avatar
jianyue1980_852
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有