<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Programmable Programmer</title>
	<atom:link href="http://gizmoworks.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gizmoworks.wordpress.com</link>
	<description>I'm thinking about it</description>
	<lastBuildDate>Thu, 27 Nov 2008 16:22:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Post With GWT by Peregrino</title>
		<link>http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-58</link>
		<dc:creator>Peregrino</dc:creator>
		<pubDate>Thu, 27 Nov 2008 16:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-58</guid>
		<description>@And:
You&#039;re violating the Same Origin Policy (SOP), that&#039;s a restriction of GWT to prevent Cross Site Scripting (XSS) attacks, so that you can only request elements hosted on your same domain. 

There are some ways to get around this which are documented in the GWT Docs. I recall reading about a technique called &quot;JSON with Padding&quot; or JSOP that allowed you to do something like what you&#039;re trying to do ;)

Hope this helps in any way.</description>
		<content:encoded><![CDATA[<p>@And:<br />
You&#8217;re violating the Same Origin Policy (SOP), that&#8217;s a restriction of GWT to prevent Cross Site Scripting (XSS) attacks, so that you can only request elements hosted on your same domain. </p>
<p>There are some ways to get around this which are documented in the GWT Docs. I recall reading about a technique called &#8220;JSON with Padding&#8221; or JSOP that allowed you to do something like what you&#8217;re trying to do <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Hope this helps in any way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Post With GWT by And</title>
		<link>http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-54</link>
		<dc:creator>And</dc:creator>
		<pubDate>Thu, 10 Jul 2008 08:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-54</guid>
		<description>I was trying to send a POST request to &quot;http://www.google.com/accounts/ClientLogin&quot; but i get: &quot;The URL
http://www.google.com/accounts/ClientLogin is invalid or violates the same-origin security restriction&quot; (i get this for anything starting with http:// or localhost). How can i get pass this? is there NO WAY to send a request to server/servlet in another domain??</description>
		<content:encoded><![CDATA[<p>I was trying to send a POST request to &#8220;http://www.google.com/accounts/ClientLogin&#8221; but i get: &#8220;The URL<br />
<a href="http://www.google.com/accounts/ClientLogin" rel="nofollow">http://www.google.com/accounts/ClientLogin</a> is invalid or violates the same-origin security restriction&#8221; (i get this for anything starting with http:// or localhost). How can i get pass this? is there NO WAY to send a request to server/servlet in another domain??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Post With GWT by Mary</title>
		<link>http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-48</link>
		<dc:creator>Mary</dc:creator>
		<pubDate>Mon, 19 May 2008 15:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-48</guid>
		<description>I&#039;m starting on GWT, can you give other examples where you are using the way &quot;RequestBuilder&quot; for RPC in GWT</description>
		<content:encoded><![CDATA[<p>I&#8217;m starting on GWT, can you give other examples where you are using the way &#8220;RequestBuilder&#8221; for RPC in GWT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Palindrome in Lisp by kelly</title>
		<link>http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-47</link>
		<dc:creator>kelly</dc:creator>
		<pubDate>Tue, 15 Apr 2008 04:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-47</guid>
		<description>an iterative approach

(defun make-palindrome(list)
  (if (= (length list) 1)
    list
  (dotimes (count (length list) list)
    (setf list (append list (list (nth (- (length list) (+ count (+ count 1))) list))))
  ))
)</description>
		<content:encoded><![CDATA[<p>an iterative approach</p>
<p>(defun make-palindrome(list)<br />
  (if (= (length list) 1)<br />
    list<br />
  (dotimes (count (length list) list)<br />
    (setf list (append list (list (nth (- (length list) (+ count (+ count 1))) list))))<br />
  ))<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Factorial in Lisp by Ralph</title>
		<link>http://gizmoworks.wordpress.com/2007/06/27/factorial-in-lisp/#comment-46</link>
		<dc:creator>Ralph</dc:creator>
		<pubDate>Tue, 26 Feb 2008 04:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/06/27/factorial-in-lisp/#comment-46</guid>
		<description>I realize that you wrote this a while ago, but there is a bug in your Lisp version of factorial function.  If you call (factorial 0), I believe you get an infinite loop.  I think that the &quot;if&quot; condition should be (if (&lt;= n 1) ...) to fix it.</description>
		<content:encoded><![CDATA[<p>I realize that you wrote this a while ago, but there is a bug in your Lisp version of factorial function.  If you call (factorial 0), I believe you get an infinite loop.  I think that the &#8220;if&#8221; condition should be (if (&lt;= n 1) &#8230;) to fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Post With GWT by louis</title>
		<link>http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-45</link>
		<dc:creator>louis</dc:creator>
		<pubDate>Wed, 06 Feb 2008 10:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/05/15/post-with-gwt/#comment-45</guid>
		<description>very cool code, was looking for it for a long time...</description>
		<content:encoded><![CDATA[<p>very cool code, was looking for it for a long time&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Palindrome in Lisp by Mada</title>
		<link>http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-32</link>
		<dc:creator>Mada</dc:creator>
		<pubDate>Wed, 17 Oct 2007 17:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-32</guid>
		<description>Good job!:) Saved me a lot of nerves, I was going on the same idea but sort of got lost between parentheses :P</description>
		<content:encoded><![CDATA[<p>Good job!:) Saved me a lot of nerves, I was going on the same idea but sort of got lost between parentheses <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Palindrome in Lisp by sivakumar</title>
		<link>http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-6</link>
		<dc:creator>sivakumar</dc:creator>
		<pubDate>Sun, 08 Jul 2007 10:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://gizmoworks.wordpress.com/2007/06/28/palindrome-in-lisp/#comment-6</guid>
		<description>nice</description>
		<content:encoded><![CDATA[<p>nice</p>
]]></content:encoded>
	</item>
</channel>
</rss>
