Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XMPP Bosh vs SignalR

Tags:

signalr

xmpp

Does XMPP has more advantaces agains SignalR? They both using http long polling mechanism and I can not decide shall I use XMPP for my chat aplication or shall I use SignalR and keep everything ion my IIS server?

like image 924
Reno Avatar asked Jul 23 '12 16:07

Reno


2 Answers

SignalR uses several transports see the explanation here How SignalR works internally?. Advantages of XMPP are the fact that greater number of other clients that just work out of the box (gchat, pidgin etc). But you could use both for your application if you wanted.

like image 174
davidfowl Avatar answered Oct 12 '22 09:10

davidfowl


SignalR has a pile of ways for real time communication. WebSocket!! have you not heared about it? SignalR only use long pooling when nothing else is availabe on your old computer.

like image 39
Kevin Avatar answered Oct 12 '22 08:10

Kevin