Create Instante Messenger using XMPP and C # .NET.

I am trying to create an Instant Messaging application on my ASP.NET site using C #. I learned about XMPP , which is the protocol used for instant messaging through GChat. I was wondering how to implement it in my ASP.NET application. Any ideas presented on this will be greatly appreciated.

Thank.

Nlv

+3
source share
2 answers

As for C # libraries, most of them are private or licensed. I found that MatriX (used to be agsXMPP) was the best in terms of what it can do (the developer license can be a little cool though). Perhaps Jabber.net would also be a good choice.

This is not for the faint of heart. Creating a client might be fine, but creating a component or deploying a server did not cause me any headaches. Understanding how this works may be the best approach. There is a book called "XMPP: The Definitive Guide", which I found very useful.

+5
source

Check out this great book, you should have what you need to implement your instant messaging application.

http://www.wrox.com/WileyCDA/WroxTitle/Professional-XMPP-Programming-with-JavaScript-and-jQuery.productCd-0470540710.html

0

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


All Articles