Nitin
Nitin

Reputation: 941

Chat functionality in web application using XMPP and Openfire

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??

Upvotes: 0

Views: 2088

Answers (1)

beaver
beaver

Reputation: 17647

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 = "[email protected]";
$('#pass').get(0).value = "pippo";

Upvotes: 2

Related Questions