Is there a free c# xmpp server ?

kubi

New member
Joined
Apr 7, 2015
Messages
1
Programming Experience
5-10
Hi,

We want to build a mobile chat application. So we will need an xmpp c# host application.
Do you have any suggestions?
I know agsxmpp-sdk but it is not free.
 
There isn't an xmpp equivalent for .Net (that I know of) and you really don't need one either.
For mobile apps you wont be running an iis server on the devices, so you make the app able to run directly on the device pretty much like you would a program running on a system.
For the intercommunication you'll probably want to use WebServices for the messaging between and that would require a Windows based web host on your domain, of which would have iis and can run .net websites/webservices from; your mobile app would just consume the chat WebService(s) you create.
 
Back
Top Bottom