<?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: Retrieving SharePoint List Data from Silverlight Without a Custom WCF or ASP.NET Web Service</title>
	<atom:link href="http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/</link>
	<description>Practical tips and tricks for all things .NET, SharePoint, Silverlight, InfoPath, and general application development.</description>
	<lastBuildDate>Tue, 01 Feb 2011 16:28:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Dijana</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-1294</link>
		<dc:creator>Dijana</dc:creator>
		<pubDate>Thu, 10 Jun 2010 11:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-1294</guid>
		<description>Great tutorial! Except I am having a problem, my project run without error but I get a empty page.
Can you please help me!!!

Dijana</description>
		<content:encoded><![CDATA[<p>Great tutorial! Except I am having a problem, my project run without error but I get a empty page.<br />
Can you please help me!!!</p>
<p>Dijana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Mathis</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-1023</link>
		<dc:creator>John Mathis</dc:creator>
		<pubDate>Tue, 12 May 2009 19:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-1023</guid>
		<description>The security issue is resolved- I used SharePoint Designer to add the appropriate clientaccesspolicy.xml file to the root of the SharePoint site.  Interesting, you must use SPD to add the file because all SharePoint content is stored in it&#039;s database.  As I cleverly discovered, you cannot simply add the file to the root directory for the SharePoint site in Explorer...use SharePoint Designer.

John</description>
		<content:encoded><![CDATA[<p>The security issue is resolved- I used SharePoint Designer to add the appropriate clientaccesspolicy.xml file to the root of the SharePoint site.  Interesting, you must use SPD to add the file because all SharePoint content is stored in it&#8217;s database.  As I cleverly discovered, you cannot simply add the file to the root directory for the SharePoint site in Explorer&#8230;use SharePoint Designer.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Mathis</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-1022</link>
		<dc:creator>John Mathis</dc:creator>
		<pubDate>Mon, 11 May 2009 21:08:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-1022</guid>
		<description>Great tutorial!  Except I am having a problem, and wondered if you encountered this.  I am attempting to access a test SharePoint site on a VM.  My Silverlight app is on my dev box and just using TestPage.html.  I am implementing pretty much exactly your scenario outlined above.

In my ResponseCallback method, this line:
&lt;code&gt;
response = (HttpWebResponse) request.EndGetResponse(asyncResult);
&lt;/code&gt;
throws a SecurityException.

I&#039;d appreciate any insight you might have.

Regards,

John</description>
		<content:encoded><![CDATA[<p>Great tutorial!  Except I am having a problem, and wondered if you encountered this.  I am attempting to access a test SharePoint site on a VM.  My Silverlight app is on my dev box and just using TestPage.html.  I am implementing pretty much exactly your scenario outlined above.</p>
<p>In my ResponseCallback method, this line:<br />
<code><br />
response = (HttpWebResponse) request.EndGetResponse(asyncResult);<br />
</code><br />
throws a SecurityException.</p>
<p>I&#8217;d appreciate any insight you might have.</p>
<p>Regards,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DevExpert</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-986</link>
		<dc:creator>DevExpert</dc:creator>
		<pubDate>Tue, 14 Apr 2009 18:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-986</guid>
		<description>Sorry, should&#039;ve included that.  I have two additional class-level variables: _siteUrl and _listName, which are defined as follows:

&lt;code&gt;private string _siteUrl = &quot;http://server/sites/silverlight&quot;;
        private string _listName = &quot;Widgets&quot;;&lt;/code&gt;

Hopefully that helps!</description>
		<content:encoded><![CDATA[<p>Sorry, should&#8217;ve included that.  I have two additional class-level variables: _siteUrl and _listName, which are defined as follows:</p>
<p><code>private string _siteUrl = "http://server/sites/silverlight";<br />
        private string _listName = "Widgets";</code></p>
<p>Hopefully that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Sehgal</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-981</link>
		<dc:creator>Nitin Sehgal</dc:creator>
		<pubDate>Mon, 13 Apr 2009 12:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-981</guid>
		<description>_listName ? can you tell me the above code where you use _listName</description>
		<content:encoded><![CDATA[<p>_listName ? can you tell me the above code where you use _listName</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sahil Malik</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-5</link>
		<dc:creator>Sahil Malik</dc:creator>
		<pubDate>Tue, 10 Feb 2009 07:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-5</guid>
		<description>Very nice!</description>
		<content:encoded><![CDATA[<p>Very nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karine Bosch</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-4</link>
		<dc:creator>Karine Bosch</dc:creator>
		<pubDate>Mon, 09 Feb 2009 15:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-4</guid>
		<description>Thanks a lot for your reference! And I just noticed I&#039;m missing some screen shots. I&#039;ll add them :D
Karine</description>
		<content:encoded><![CDATA[<p>Thanks a lot for your reference! And I just noticed I&#8217;m missing some screen shots. I&#8217;ll add them <img src='http://www.devexpertise.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Karine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karine Bosch</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-3</link>
		<dc:creator>Karine Bosch</dc:creator>
		<pubDate>Mon, 09 Feb 2009 15:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-3</guid>
		<description>Nice article and well explained!
See also http://karinebosch.wordpress.com/2009/01/22/22/</description>
		<content:encoded><![CDATA[<p>Nice article and well explained!<br />
See also <a href="http://karinebosch.wordpress.com/2009/01/22/22/" onclick="javascript:pageTracker._trackPageview('/outbound/comment/karinebosch.wordpress.com');" rel="nofollow">http://karinebosch.wordpress.com/2009/01/22/22/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias Zimmergren</title>
		<link>http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/comment-page-1/#comment-2</link>
		<dc:creator>Tobias Zimmergren</dc:creator>
		<pubDate>Mon, 09 Feb 2009 08:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.devexpertise.com/2009/02/07/retrieving-sharepoint-list-data-from-silverlight-without-a-custom-wcf-or-aspnet-web-service/#comment-2</guid>
		<description>Excellent article, nice alternative to using WCF!</description>
		<content:encoded><![CDATA[<p>Excellent article, nice alternative to using WCF!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

