<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Howto to Talk with GoogleTalk in Python</title>
	<atom:link href="http://www.larsen-b.com/Article/214.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com/Article/214.html</link>
	<description>Titanium Exposé</description>
	<lastBuildDate>Mon, 26 Jul 2010 10:22:02 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Roger Lew</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-7717</link>
		<dc:creator>Roger Lew</dc:creator>
		<pubDate>Sat, 05 Dec 2009 17:19:14 +0000</pubDate>
		<guid isPermaLink="false">#comment-7717</guid>
		<description>I&#039;ve discovered that when no resource identifier is provided for the sender, I receive double message with the Android client. When I use the resource identifier of my phone, which I obtained with Pidgin, I receive single posts as I should. So that is a work around if anyone stumbles on to the same problem.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve discovered that when no resource identifier is provided for the sender, I receive double message with the Android client. When I use the resource identifier of my phone, which I obtained with Pidgin, I receive single posts as I should. So that is a work around if anyone stumbles on to the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Lew</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-7716</link>
		<dc:creator>Roger Lew</dc:creator>
		<pubDate>Sat, 05 Dec 2009 05:02:40 +0000</pubDate>
		<guid isPermaLink="false">#comment-7716</guid>
		<description>Hi,

Nice example. I&#039;m getting duplicate messages on my Motorola Droid when I use this method. I&#039;m not sure whether it is the Android Gtalk Client or this method or some interaction of the two. When I send messages using xmpppy they are not duplicated in the Windows Gtalk Window. Messages are not duplicated when they are not sent with xmpppy. Just wondering if anyone had any idea what was going on. This is my first interaction with xmpp.

Thanks,
Roger</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice example. I&#8217;m getting duplicate messages on my Motorola Droid when I use this method. I&#8217;m not sure whether it is the Android Gtalk Client or this method or some interaction of the two. When I send messages using xmpppy they are not duplicated in the Windows Gtalk Window. Messages are not duplicated when they are not sent with xmpppy. Just wondering if anyone had any idea what was going on. This is my first interaction with xmpp.</p>
<p>Thanks,<br />
Roger</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K-4U</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-6968</link>
		<dc:creator>K-4U</dc:creator>
		<pubDate>Wed, 15 Apr 2009 15:31:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-6968</guid>
		<description>@ Paul Pasika:
Try this:
import xmpp
login   =   &#039;user&#039; #no @ domain.com
pwd     =   &#039;pass&#039;

connection = xmpp.Client(&#039;Domain.com&#039;)
connection.connect(server=(&#039;talk.google.com&#039;,5222))
connection.auth(login,pwd,&quot;Bot&quot;)</description>
		<content:encoded><![CDATA[<p>@ Paul Pasika:<br />
Try this:<br />
import xmpp<br />
login   =   &#8216;user&#8217; #no @ domain.com<br />
pwd     =   &#8216;pass&#8217;</p>
<p>connection = xmpp.Client(&#8217;Domain.com&#8217;)<br />
connection.connect(server=(&#8217;talk.google.com&#8217;,5222))<br />
connection.auth(login,pwd,&#8221;Bot&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Pasika</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-6949</link>
		<dc:creator>Paul Pasika</dc:creator>
		<pubDate>Tue, 31 Mar 2009 17:53:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-6949</guid>
		<description>How can I use this to get my domain (domain.com for the sake of security) hosted at google gtalk account working?  I&#039;ve tried to no avail - 

import xmpp

login = &#039;user@domain.com&#039; # @gmail.com     
pwd   = &#039;password&#039;

cnx = xmpp.Client(&#039;domain.com&#039;)
cnx.connect( server=(&#039;talk.google.com&#039;,5223) )
cnx.auth(login,pwd, &#039;botty&#039;)

cnx.send( xmpp.Message( &quot;paul@domain.com&quot; ,&quot;Hello World form Python&quot; ) )</description>
		<content:encoded><![CDATA[<p>How can I use this to get my domain (domain.com for the sake of security) hosted at google gtalk account working?  I&#8217;ve tried to no avail &#8211; </p>
<p>import xmpp</p>
<p>login = &#8216;user@domain.com&#8217; # @gmail.com<br />
pwd   = &#8216;password&#8217;</p>
<p>cnx = xmpp.Client(&#8217;domain.com&#8217;)<br />
cnx.connect( server=(&#8217;talk.google.com&#8217;,5223) )<br />
cnx.auth(login,pwd, &#8216;botty&#8217;)</p>
<p>cnx.send( xmpp.Message( &#8220;paul@domain.com&#8221; ,&#8221;Hello World form Python&#8221; ) )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LKRaider</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-2715</link>
		<dc:creator>LKRaider</dc:creator>
		<pubDate>Sat, 03 May 2008 04:47:34 +0000</pubDate>
		<guid isPermaLink="false">#comment-2715</guid>
		<description>Can&#039;t get it to work :(

Is there a better jabber lib for python?</description>
		<content:encoded><![CDATA[<p>Can&#8217;t get it to work :(</p>
<p>Is there a better jabber lib for python?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-469</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-469</guid>
		<description>&lt;p&gt;GTalk doesn&#039;t support SIP yet. See the &lt;a class=&quot;reference&quot; href=&quot;http://www.google.com/talk/developer.html&quot;&gt;GTalk developer info page&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>GTalk doesn&#8217;t support SIP yet. See the <a class="reference" href="http://www.google.com/talk/developer.html">GTalk developer info page</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jkx</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-470</link>
		<dc:creator>Jkx</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-470</guid>
		<description>&lt;p&gt;On yes, it&#039;s Jabber + InDoor_Not_Public_Yet_P2P_VOIP, you&#039;re right.. But anyways, I guess not a lot of people will use this VOIP provider right now.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>On yes, it&#8217;s Jabber + InDoor_Not_Public_Yet_P2P_VOIP, you&#8217;re right.. But anyways, I guess not a lot of people will use this VOIP provider right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swaroop</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-471</link>
		<dc:creator>Swaroop</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-471</guid>
		<description>&lt;p&gt;Interesting.&lt;/p&gt;
&lt;p&gt;Is it this easy to write a spimbot for GTalk?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Interesting.</p>
<p>Is it this easy to write a spimbot for GTalk?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zgoda</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-472</link>
		<dc:creator>zgoda</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-472</guid>
		<description>The most complete XMPP/Jabber library currently in the wild is PyXMPP (http://pyxmpp.jabberstudio.org/). Unfortunately, it is currently supported only on linux platform, though some work is underway to port it to Windows.</description>
		<content:encoded><![CDATA[<p>The most complete XMPP/Jabber library currently in the wild is PyXMPP (<a href="http://pyxmpp.jabberstudio.org/)" rel="nofollow">http://pyxmpp.jabberstudio.org/)</a>. Unfortunately, it is currently supported only on linux platform, though some work is underway to port it to Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jkx</title>
		<link>http://www.larsen-b.com/Article/214.html/comment-page-1#comment-473</link>
		<dc:creator>Jkx</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-473</guid>
		<description>&lt;p&gt;Perhaps it&#039;s time to merge no ?  3 modules w/ quite the same API..&lt;/p&gt;
&lt;p&gt;As usual in Python world,  divide to loose :(&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Perhaps it&#8217;s time to merge no ?  3 modules w/ quite the same API..</p>
<p>As usual in Python world,  divide to loose :(</p>
]]></content:encoded>
	</item>
</channel>
</rss>
