想問問,如果我想在網頁內對某個MSN用戶發出 Message ,要使用 Web Services 是怎樣做,例如我有自己 MSN 帳號的,在網頁內有兩textbox ,一個是對方MSN Address 另一個是 Message,當按下便韶用 Web Services 發出 Message 去用戶。謝高手解答 !!! DotMSN我試過了:
1 DotMSN.Messenger messager = new DotMSN.Messenger();   
2 messager.Connect("[email protected]", "XXXXXXXX");   
3 messager.Owner.Name = "中文字";   
4 messager.SynchronizeList();   
5 Thread.Sleep(2000);   
6 messager.SetStatus(MSNStatus.Online);   
7 Thread.Sleep(1000);   
8   
9 string msnAddress = "[email protected]";   
10 DotMSN.Conversation conversation = messager.RequestConversation(msnAddress);   
11 Thread.Sleep(2000);   
12 conversation.SendMessage("繁體中文字", "Header");   
13 Thread.Sleep(1000);   
14 messager.CloseConnection();   登錄及程式沒錯但人家收不到 .....參考 :
http://roxsu.blogspot.com/2007/05/msn-messenger-aspnet.html