K.Kirivarnan
K.Kirivarnan

Reputation: 828

Open source XMPP library with BOSH support

Is there any open source XMPP library (written in c#) with BOSH support? I checkout AgsXMPP. AgsXMPP doesn't seem to have bosh support. But Matrix supports bosh. Matrix is a commercial one.

Upvotes: 3

Views: 5642

Answers (3)

Nitin Bhatt
Nitin Bhatt

Reputation: 436

Try using the Jabber net on google code. This ia open source and does support BOSH. http://code.google.com/p/jabber-net/

Upvotes: 1

K.Kirivarnan
K.Kirivarnan

Reputation: 828

We can bind the bosh (using AgsXMPP library) as follows,

        XmppClientConnection xmpp;
        xmpp = new XmppClientConnection();
        xmpp.Port = 5280;
        xmpp.Server = jidSender.Server;
        xmpp.SocketConnectionType = agsXMPP.net.SocketConnectionType.Bosh;
        xmpp.ConnectServer = "http://localhost:5280/http-bind";

Upvotes: 1

Norman Joyner
Norman Joyner

Reputation: 955

You can try SoapBox SDK Studio, which offers full support for BOSH (XEP-124) and partial support for XMPP over BOSH (XEP-206).

If this does not work for you, you can also check out the XMPP Library List and see if any of the other C# libraries fit your needs.

Best of luck!

Upvotes: 5

Related Questions