Pregunta

How to build xmpp over web sockets web chat application like gtalk using javascript+html or asp.net? ıt accepts file transfer, video conferencing, private or group chatting. Multiple users and servers can communicate with each other.

¿Fue útil?

Solución

If you want your chat system to work with google's gtalk, or If you want to create your own chat server and make private system you will need to implement xmpp on javascript,

follow the links that will help you http://professionalxmpp.com/ https://github.com/maxpowel/jQuery-XMPP-plugin

Otros consejos

There are two ways to achieve your goal:

  1. You can build your own chat solution from scratch (build backend solution using XMPP XEPs, etc. and client-side app)
  2. To make it easier for you, you can use a ready backend and SDK provided by some BaaS providers. In such way you can concentrate on building client-side solution and its UI while you already have a ready backend and a set of requests to connect to that backend and use it.

You can try ConnectyCube since it has both chat and video chat. For video chat they have two options: WebRTC peer-to-peer solution and SFU based one.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top