tags:

views:

116

answers:

1

Is it possible to create a simple MSN client with the Jabber-net library?

I use these parameters but hotmail refuses my conection:

jabberClient1.Server = "messenger.hotmail.com";
jabberClient1.NetworkHost = "messenger.hotmail.com";
jabberClient1.Port = 1863;
A: 

Jabber-net is a library for the Extensible Messaging and Presence Protocol (also known as Jabber). You can't develop a MSN clients with it; MSN uses a different protocol.

Have a look at MSNPSharp.

dtb