msnpsharp

Does anyone know how to send a message to MSN Messenger?

Hi folks, I'm trying to have my windows application send a message to two msn messenger accounts. So, I grabbed the code from the MSNPSharp library and had a look in that. I can authenticate/sign in without a problem. But once i've done that, I have no idea how to send a simple text message to two other users. Do those users need to b...

MSNP-Sharp Example fails to login, gives SocketException

I've just downloaded the MSNP-Sharp library with the aim of creating my own messaging client, however I am struggling to get the example to sign in. The code all compiles and runs, but when I provide my login details and select "Login" I almost immediately get the following SocketException: "No connection could be made because the ta...

MSNP-SHARP how to send an hello message to an user that changed status from offline to online

I tried in this way. I subscribed to that event who control the user status, its announcing me that user in Online. my code is: void Nameserver_ContactOnline(object sender, ContactEventArgs e) { Talk = messenger.CreateConversation(); Talk.Invite(e.Contact.Mail,ClientType.PassportMember); Talk.SendTextMessage(new ...