<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Performance tuning a GWT application</title>
	<atom:link href="http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/</link>
	<description>Musings on the Art and Craft of Creating Software</description>
	<lastBuildDate>Sat, 07 Nov 2009 04:31:35 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: LivingLegends</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-164</link>
		<dc:creator>LivingLegends</dc:creator>
		<pubDate>Mon, 07 Sep 2009 05:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-164</guid>
		<description>Hi,

how to user XStream in GWT? If I use it at Server side convert POJO to xml, then how to convert from XML to POJO at client side.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>how to user XStream in GWT? If I use it at Server side convert POJO to xml, then how to convert from XML to POJO at client side.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sinnema313</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-154</link>
		<dc:creator>sinnema313</dc:creator>
		<pubDate>Wed, 27 May 2009 11:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-154</guid>
		<description>You can use XStream on the *server* side, but not on the *client* side.  GWT will only compile your Java source to JavaScript, not any jars you might want to use. You could add the XStream Java *source* to your project, but chances are it uses something else that is not supported by GWT.</description>
		<content:encoded><![CDATA[<p>You can use XStream on the *server* side, but not on the *client* side.  GWT will only compile your Java source to JavaScript, not any jars you might want to use. You could add the XStream Java *source* to your project, but chances are it uses something else that is not supported by GWT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LivingLegends</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-153</link>
		<dc:creator>LivingLegends</dc:creator>
		<pubDate>Wed, 27 May 2009 10:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-153</guid>
		<description>Hi, I want to use XStream with GWT. I have written code in GWT application using XStream but when I run application, it threw an error with messages

&quot;[ERROR] Line 235: No source code is available for type com.thoughtworks.xstream.XStream; did you forget to inherit a required module?&quot;

and 

&quot;[ERROR] Line 235: No source code is available for type com.thoughtworks.xstream.io.xml.DomDriver; did you forget to inherit a required module?&quot;

How to integrate XStream jar file with GWT application. I got this error while run application in Hosted mode.
Please help asap.
Thanx.</description>
		<content:encoded><![CDATA[<p>Hi, I want to use XStream with GWT. I have written code in GWT application using XStream but when I run application, it threw an error with messages</p>
<p>&#8220;[ERROR] Line 235: No source code is available for type com.thoughtworks.xstream.XStream; did you forget to inherit a required module?&#8221;</p>
<p>and </p>
<p>&#8220;[ERROR] Line 235: No source code is available for type com.thoughtworks.xstream.io.xml.DomDriver; did you forget to inherit a required module?&#8221;</p>
<p>How to integrate XStream jar file with GWT application. I got this error while run application in Hosted mode.<br />
Please help asap.<br />
Thanx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sinnema313</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-150</link>
		<dc:creator>sinnema313</dc:creator>
		<pubDate>Tue, 21 Apr 2009 14:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-150</guid>
		<description>Dominik,

I improved performance on IE7 by profiling on FireFox for getting an idea and then testing in IE7 to see if the idea was actually an improvement. I&#039;m sure this is not a perfect method, but it did work in my case.</description>
		<content:encoded><![CDATA[<p>Dominik,</p>
<p>I improved performance on IE7 by profiling on FireFox for getting an idea and then testing in IE7 to see if the idea was actually an improvement. I&#8217;m sure this is not a perfect method, but it did work in my case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dominiksteiner</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-149</link>
		<dc:creator>dominiksteiner</dc:creator>
		<pubDate>Tue, 21 Apr 2009 13:37:16 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-149</guid>
		<description>Hi,

great article! Wondering how you could improve performance in IE7 if you hadn&#039;t the chance to use a profiler on it?

Thanks

Dominik</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>great article! Wondering how you could improve performance in IE7 if you hadn&#8217;t the chance to use a profiler on it?</p>
<p>Thanks</p>
<p>Dominik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gyowanny</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-59</link>
		<dc:creator>Gyowanny</dc:creator>
		<pubDate>Tue, 02 Dec 2008 16:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-59</guid>
		<description>Very nice article.

For that ones who does not like the GWT´s serialization I would like to suggest the XStream (http://xstream.codehaus.org/), pretty easy to use. I´m working with it along GWT and the result has been very cool.

Gyo</description>
		<content:encoded><![CDATA[<p>Very nice article.</p>
<p>For that ones who does not like the GWT´s serialization I would like to suggest the XStream (<a href="http://xstream.codehaus.org/)" rel="nofollow">http://xstream.codehaus.org/)</a>, pretty easy to use. I´m working with it along GWT and the result has been very cool.</p>
<p>Gyo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudius Hauptmann</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-57</link>
		<dc:creator>Claudius Hauptmann</dc:creator>
		<pubDate>Sun, 23 Nov 2008 14:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-57</guid>
		<description>Are the performance problems related to java.io.Serializable or IsSerializable or both?

http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&amp;s=google-web-toolkit-doc-1-5&amp;t=FAQ_RPCSerializationSupport</description>
		<content:encoded><![CDATA[<p>Are the performance problems related to java.io.Serializable or IsSerializable or both?</p>
<p><a href="http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&amp;s=google-web-toolkit-doc-1-5&amp;t=FAQ_RPCSerializationSupport" rel="nofollow">http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&amp;s=google-web-toolkit-doc-1-5&amp;t=FAQ_RPCSerializationSupport</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2008-11-23 &#171; Amy G. Dala</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-56</link>
		<dc:creator>links for 2008-11-23 &#171; Amy G. Dala</dc:creator>
		<pubDate>Sun, 23 Nov 2008 14:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-56</guid>
		<description>[...] Performance tuning a GWT application « The Art of Software Development (tags: gwt tips) [...]</description>
		<content:encoded><![CDATA[<p>[...] Performance tuning a GWT application « The Art of Software Development (tags: gwt tips) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sinnema313</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-50</link>
		<dc:creator>sinnema313</dc:creator>
		<pubDate>Mon, 17 Nov 2008 23:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-50</guid>
		<description>@kail: From the page you are referring to:
&quot;The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named &quot;Firefox&quot;.&quot;

Note the phrase &quot;some Firebug features&quot;. Unfortunately, profiling isn&#039;t one of them, as you can see in the screen shot on that same page: There are Inspect and Clear buttons, but there is no Profile button.</description>
		<content:encoded><![CDATA[<p>@kail: From the page you are referring to:<br />
&#8220;The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named &#8220;Firefox&#8221;.&#8221;</p>
<p>Note the phrase &#8220;some Firebug features&#8221;. Unfortunately, profiling isn&#8217;t one of them, as you can see in the screen shot on that same page: There are Inspect and Clear buttons, but there is no Profile button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kail</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-49</link>
		<dc:creator>kail</dc:creator>
		<pubDate>Mon, 17 Nov 2008 16:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-49</guid>
		<description>Well, you can use Firebug with IE, Opera or Safari http://getfirebug.com/lite.html

Check this out.</description>
		<content:encoded><![CDATA[<p>Well, you can use Firebug with IE, Opera or Safari <a href="http://getfirebug.com/lite.html" rel="nofollow">http://getfirebug.com/lite.html</a></p>
<p>Check this out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce Johnson</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-48</link>
		<dc:creator>Bruce Johnson</dc:creator>
		<pubDate>Mon, 17 Nov 2008 15:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-48</guid>
		<description>Nice post, and especially great advice: for anything crucial, measure!</description>
		<content:encoded><![CDATA[<p>Nice post, and especially great advice: for anything crucial, measure!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekly GWT Links For 11/16/08 &#124; GWT Site</title>
		<link>http://sinnema313.wordpress.com/2008/11/16/performance-tuning-a-gwt-application/#comment-47</link>
		<dc:creator>Weekly GWT Links For 11/16/08 &#124; GWT Site</dc:creator>
		<pubDate>Mon, 17 Nov 2008 06:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://sinnema313.wordpress.com/?p=452#comment-47</guid>
		<description>[...] Performance tuning a GWT application Some nice tips for optimizing your GWT apps. [...]</description>
		<content:encoded><![CDATA[<p>[...] Performance tuning a GWT application Some nice tips for optimizing your GWT apps. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
