<?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"
	>
<channel>
	<title>Comments on: Totally *Unofficial* Android GTalk Client (Send/Receive XMPP Messages)</title>
	<atom:link href="http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/feed/" rel="self" type="application/rss+xml" />
	<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/</link>
	<description>Web Services, Android, Open Source, Apache, etc.</description>
	<pubDate>Fri, 25 Jul 2008 06:18:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>By: SEO collection links on optimization competitions</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1757</link>
		<dc:creator>SEO collection links on optimization competitions</dc:creator>
		<pubDate>Mon, 23 Jun 2008 14:09:39 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1757</guid>
		<description>Would be nice if the end of few lines from the list adapter show on the screen, once the screen is full you have to scroll the list down to see the latest messages.</description>
		<content:encoded><![CDATA[<p>Would be nice if the end of few lines from the list adapter show on the screen, once the screen is full you have to scroll the list down to see the latest messages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: photoshop</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1689</link>
		<dc:creator>photoshop</dc:creator>
		<pubDate>Sun, 18 May 2008 18:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1689</guid>
		<description>&lt;a href="”www.brushezzz.com”" rel="nofollow"&gt;[…]TVery cool article, and useful. Keep up the good work[…]</description>
		<content:encoded><![CDATA[<p><a href="”www.brushezzz.com”" rel="nofollow">[…]TVery cool article, and useful. Keep up the good work[…]</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baishakhi</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1591</link>
		<dc:creator>Baishakhi</dc:creator>
		<pubDate>Sun, 06 Apr 2008 20:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1591</guid>
		<description>Hi,
I'm getting problem to import import 
import com.google.android.xmppService

I'm using eclipse platform. Any hint?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m getting problem to import import<br />
import com.google.android.xmppService</p>
<p>I&#8217;m using eclipse platform. Any hint?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SamaraRegion</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1490</link>
		<dc:creator>SamaraRegion</dc:creator>
		<pubDate>Fri, 29 Feb 2008 03:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1490</guid>
		<description>its the best post from you, thanks a lot</description>
		<content:encoded><![CDATA[<p>its the best post from you, thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xayide</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1489</link>
		<dc:creator>xayide</dc:creator>
		<pubDate>Thu, 28 Feb 2008 18:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1489</guid>
		<description>Hello!

I have used this code, but there is a problem due to the change of version of the sdk. I have changed all xmpp appearences for gtalk. But i don´t know how to update this two calls:

    private void logMessage(CharSequence msg) {
        NotificationManager nm = (NotificationManager) getSystemService(
                Context.NOTIFICATION_SERVICE);

        nm.notifyWithText(123, msg, NotificationManager.LENGTH_LONG, null);
    }

In the new sdk notificationmanager doesn´t work this way.

And the other problem:

 mXmppSession.sendTextMessage(username, 0, mSendText.getText().toString());

Now we can´t use sendTextMessage, we have to use sendDataMessage(String to, Intent broadcastintent)

How is sendDataMessage(...) used? do we have to create a new class just to write the text message in the receipent??

thank you very much!!</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I have used this code, but there is a problem due to the change of version of the sdk. I have changed all xmpp appearences for gtalk. But i don´t know how to update this two calls:</p>
<p>    private void logMessage(CharSequence msg) {<br />
        NotificationManager nm = (NotificationManager) getSystemService(<br />
                Context.NOTIFICATION_SERVICE);</p>
<p>        nm.notifyWithText(123, msg, NotificationManager.LENGTH_LONG, null);<br />
    }</p>
<p>In the new sdk notificationmanager doesn´t work this way.</p>
<p>And the other problem:</p>
<p> mXmppSession.sendTextMessage(username, 0, mSendText.getText().toString());</p>
<p>Now we can´t use sendTextMessage, we have to use sendDataMessage(String to, Intent broadcastintent)</p>
<p>How is sendDataMessage(&#8230 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> used? do we have to create a new class just to write the text message in the receipent??</p>
<p>thank you very much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Serg</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1482</link>
		<dc:creator>Serg</dc:creator>
		<pubDate>Sun, 24 Feb 2008 15:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1482</guid>
		<description>Hi, just read this post. Thank you!</description>
		<content:encoded><![CDATA[<p>Hi, just read this post. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: enshrentko</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1436</link>
		<dc:creator>enshrentko</dc:creator>
		<pubDate>Sat, 26 Jan 2008 16:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1436</guid>
		<description>i see no message came in?

please help

is it really can receive text message from gtalk client?</description>
		<content:encoded><![CDATA[<p>i see no message came in?</p>
<p>please help</p>
<p>is it really can receive text message from gtalk client?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamsi</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1433</link>
		<dc:creator>vamsi</dc:creator>
		<pubDate>Fri, 25 Jan 2008 08:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1433</guid>
		<description>Hi ,

I am new  to android .  

How  we can invoke web services on remote server through android.

Any help?

by
vamsi</description>
		<content:encoded><![CDATA[<p>Hi ,</p>
<p>I am new  to android .  </p>
<p>How  we can invoke web services on remote server through android.</p>
<p>Any help?</p>
<p>by<br />
vamsi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kimochi</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1422</link>
		<dc:creator>kimochi</dc:creator>
		<pubDate>Sat, 19 Jan 2008 21:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1422</guid>
		<description>Very cool article, and useful. Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Very cool article, and useful. Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1419</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Fri, 18 Jan 2008 05:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://davanum.wordpress.com/2007/11/23/totally-unofficial-android-gtalk-client-sendreceive-xmpp-messages/#comment-1419</guid>
		<description>hi,

The application work perfect, if I just need to sent the messages. But I want to do some processing on the received messages how can I get last received message.

Regards</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>The application work perfect, if I just need to sent the messages. But I want to do some processing on the received messages how can I get last received message.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>
