I want to create chat functionality in my web application using XMPP and Openfire.. I have integrated converse js but I haven't found file attachment so any one let me know another best option using XMPP and openfire??
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Here is a very simple chat demo written in jQuery + StropheJS:
http://plnkr.co/edit/EhQHDsYpDhrECmaaIlZO
You have to deploy your own Openfire and adapt the followin code lines according to your configuration:
var server = 'mydomain.com';
var BOSH_SERVICE = 'http://127.0.0.1:7070/http-bind/';
var ROOM = 'prova@conference.' + server;
...
$('#jid').get(0).value = "pippo@mydomain.com";
$('#pass').get(0).value = "pippo";