MatriX is a SDK / library for the eXtensible Messaging and Presence Protocol (XMPP, also known as Jabber) written in managed C# dedicated to .NET and Silverlight technologies.
MatriX is available for the full .NET Framework, .NET Compact Framework and Silverlight. This allows you to reuse all your existing code on all major .NET platforms.
Here is a small example how easy you can login to a XMPP server and send a simple chat-message to another user in only 3 lines of code:
// basic send message example
var xmppClient = new XmppClient {XmppDomain = "jabber.org", Username = "user1", Password = "secret"};
xmppClient.OnRosterEnd += delegate {xmppClient.Send(new Message {To = "user2@jabber.org", Type = MessageType.chat, Body = "Hello World"});};
xmppClient.Open();
Trial version
Download a full functional trial versions of Matrix here.
The trial versions are not limited in functionality, and they don’t expire.
Evaluate our products as long as you need to. With your personal license key you upgrade the trial version to a full registered version.
Silverlight demos
You can see MatriX for Silverlight in action here:
Silverlight 2.0 or higher is required to launch the applications.
Features:
- fully compatible with RFC 3920, 3921, 6120, 6121
- cross platform, designed for:
- Microsoft .NET Framework
- Microsoft .NET Compact Framework (Pocket PC, Smartphone, Windows CE)
- Silverlight
- Windows Phone
- Mono
- Multi OS (Windows, Linux, Mac…)
- for client, server and web applications
- fast and lightweight
- easy to use
XMPP Features:
- Encryption (TLS)
- SASL
- PLAIN
- DIGEST-MD5
- GSSAPI
- EXTERNAL
- SCRAM-SHA1
- Google X-Token
- X-FACEBOOK-PLATFORM
- Roster
- Presence
- Message
- Single Sign On (SSO, GSSAPI, Kerberos)
- Service Discovery (XEP-0030)
- Extended Stanza Addressing (XEP-0033)
- Multi-User Chat (XEP-0045)
- In-Band Bytestreams (XEP-0047)
- Bookmarks (XEP-0048)
- Private XML Storage (XEP-0049)
- File Transfer (XEP-0052)
- vcard-temp (XEP-0054)
- Publish Subscribe (XEP-0060)
- Jabber Search (XEP-0055)
- XHTML-IM (formatted messages) (XEP-0071)
- Non-SASL Authentication (XEP-0078)
- Chat State Notifications (XEP-0085)
- Jabber Component Protocol (XEP-0114)
- BOSH (XEP-0124)
- Stream Compression (XEP-0138)
- User Nickname (XEP-0172)
- Attention (XEP-0224)
- Roster Versioning (XEP-0237)
- Message Delivery Receipts (XEP-0184)
- Direct MUC Invitations (XEP-0249)
- … and much more …

