<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:&#23435;&#20307;;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"\@&#23435;&#20307;";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:Arial;
        color:windowtext;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=purple>

<div class=Section1>

<div style='mso-element:para-border-div;border:none;border-bottom:solid windowtext 1.0pt;
padding:0in 0in 1.0pt 0in'>

<p class=MsoNormal style='border:none;padding:0in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>I have met some problems in the
telepathy-APIs . Below is a code about telepathy by using python . Its function
just is sending some information , But it can not run <a
href="mailto:.yanwan1_cn@hotmail.com">.yanwan1_cn@hotmail.com</a> and <a
href="mailto:yanwan2_cn@hotmail.com">yanwan2_cn@hotmail.com</a> &nbsp;are &nbsp;the
test MSN id .Thanks for your help. <o:p></o:p></span></font></p>

<p class=MsoNormal style='border:none;padding:0in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>Best regards!!!<o:p></o:p></span></font></p>

</div>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Code:<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>#!/usr/bin/python<br>
import dbus <br>
import time <br>
# connect to the bus <br>
bus = dbus.SessionBus() <br>
# get a connection manager object <br>
butt = bus.get_object( 'org.freedesktop.Telepathy.ConnectionManager.butterfly',<br>
'/org/freedesktop/Telepathy/ConnectionManager/butterfly' ) <br>
# request a connection from it<br>
params = {}<br>
<br>
params[&quot;account&quot;] = &quot;yanwan1_cn@hotmail.com&quot;<br>
params[&quot;server&quot;] = &quot;messenger.hotmail.com&quot;<br>
<br>
params[&quot;port&quot;] = dbus.UInt32(1863)<br>
params[&quot;password&quot;] = &quot;haha123456&quot;<br>
<br>
(bus_name, object_path) = butt.RequestConnection(&quot;msn&quot;, params) <br>
# get the connection object <br>
conn = bus.get_object(bus_name, object_path) <br>
# tell it to connect and wait a bit<br>
print 'object created......' <br>
conn.Connect(dbus_interface='org.freedesktop.Telepathy.Connection')<br>
print 'connected......'<br>
print conn <br>
time.sleep(3) <br>
# request a handle for our contact <br>
handles = conn.RequestHandles(dbus.UInt32(1),['yanwan2_cn@hotmail.com'])<br>
print 'handls created......' <br>
# request a text channel with that handle <br>
object_path = conn.RequestChannel( <br>
'org.freedesktop.Telepathy.Channel.Type.Text', <br>
dbus.UInt32(1), handles[0], True)<br>
print 'channel created....' <br>
# get a channel object <br>
channel = bus.get_object(bus_name, object_path) <br>
# send a message <br>
channel.Send(0, 'Hello, i am XXXX.This is just a software-testing!Thanks for
your help!')<br>
print 'message had been sent...' <br>
# disconnect <br>
#conn.Disconnect( <br>
#dbus_interface='org.freedesktop.Telepathy.Connection')</span></font><font
size=2 face=Arial><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></font></p>

</div>

</body>

</html>