Configure xmpp jQuery chat server mobile web application

I am currently working on jQuery mobile web application, I want to implement the chat function in this mobile web application. I have an XMPP chat server running on my server along with SOAP services on the tomcat6 server, all I need to do is that I need to call the service that initiates the XMPP session in the jQuery mobile web application, but how is it to do.

Please help me.

+4
source share
2 answers

As Parves said, you can use Strophe for this application, but if you want to save the problem of parsing and sending XML from a mobile application, you can do this using some php-based XMPP infrastructure like Jaxl . I would also suggest you use an ejabberd server, because it is under active development, and you can find many different modules for your needs http://www.process-one.net/en/ejabberd/ .

thanks

+1
source

you can use Strophe inside your webapp http://strophe.im/ , strophe works well with Openfire Server

+1
source

Source: https://habr.com/ru/post/1369439/


All Articles