<?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: Starting Out: Programming SharePoint Services</title>
	<atom:link href="http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/</link>
	<description>About Microsoft SharePoint and some .NET</description>
	<lastBuildDate>Wed, 11 Nov 2009 13:58:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Haf</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-678</link>
		<dc:creator>Haf</dc:creator>
		<pubDate>Wed, 22 Oct 2008 09:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-678</guid>
		<description>Hi,

How can get the each item in the list?

Thanking in Advance</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can get the each item in the list?</p>
<p>Thanking in Advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sanju</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-150</link>
		<dc:creator>sanju</dc:creator>
		<pubDate>Thu, 29 Nov 2007 12:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-150</guid>
		<description>hi,

How to add a list based on the template that I created manually in the site, using lists web service ?</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>How to add a list based on the template that I created manually in the site, using lists web service ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickgrattan</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-138</link>
		<dc:creator>nickgrattan</dc:creator>
		<pubDate>Fri, 16 Nov 2007 14:37:52 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-138</guid>
		<description>Here&#039;s the VB sample for accessing the Attributes collection:

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim lst As New moss2007.Lists
        lst.Credentials = System.Net.CredentialCache.DefaultCredentials

        Dim nl As XmlNode = lst.GetListCollection()

        For Each nd As XmlNode In nl.ChildNodes
            lstLists.Items.Add(New LstDataItem(nd.Attributes(&quot;Title&quot;).Value, New Guid(nd.Attributes(&quot;ID&quot;).Value)))
        Next
    End Sub

You can use http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx for automating the convertion. Sorry for the delay. Nick.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s the VB sample for accessing the Attributes collection:</p>
<p>    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
        Dim lst As New moss2007.Lists<br />
        lst.Credentials = System.Net.CredentialCache.DefaultCredentials</p>
<p>        Dim nl As XmlNode = lst.GetListCollection()</p>
<p>        For Each nd As XmlNode In nl.ChildNodes<br />
            lstLists.Items.Add(New LstDataItem(nd.Attributes(&#8220;Title&#8221;).Value, New Guid(nd.Attributes(&#8220;ID&#8221;).Value)))<br />
        Next<br />
    End Sub</p>
<p>You can use <a href="http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx" rel="nofollow">http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx</a> for automating the convertion. Sorry for the delay. Nick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickgrattan</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-137</link>
		<dc:creator>nickgrattan</dc:creator>
		<pubDate>Fri, 16 Nov 2007 14:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-137</guid>
		<description>To authenticate onto another server, add a &quot;using System.Net;&quot; and then use the following code to create a NetworkCredential object:

            lst = new moss2007.Lists();
            NetworkCredential nc = new NetworkCredential();
            nc.UserName = &quot;Administrator&quot;;
            nc.Password = &quot;password&quot;;
            lst.Credentials = nc;

(That&#039;s not my password, honest!) Nick.</description>
		<content:encoded><![CDATA[<p>To authenticate onto another server, add a &#8220;using System.Net;&#8221; and then use the following code to create a NetworkCredential object:</p>
<p>            lst = new moss2007.Lists();<br />
            NetworkCredential nc = new NetworkCredential();<br />
            nc.UserName = &#8220;Administrator&#8221;;<br />
            nc.Password = &#8220;password&#8221;;<br />
            lst.Credentials = nc;</p>
<p>(That&#8217;s not my password, honest!) Nick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-134</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 14 Nov 2007 17:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-134</guid>
		<description>Thanks for posting this, I was wondering if you knew how to authenticate from your code when using a hosted SharePoint site. Everything else seems straight forward except for trying to connect when you are not on the same network.

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for posting this, I was wondering if you knew how to authenticate from your code when using a hosted SharePoint site. Everything else seems straight forward except for trying to connect when you are not on the same network.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rudy</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-90</link>
		<dc:creator>Rudy</dc:creator>
		<pubDate>Fri, 02 Nov 2007 15:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-90</guid>
		<description>Can you give me a example of using nd.Attributes[”Title”].Value in Visual Studio 2005 VB code?</description>
		<content:encoded><![CDATA[<p>Can you give me a example of using nd.Attributes[”Title”].Value in Visual Studio 2005 VB code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickgrattan</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-30</link>
		<dc:creator>nickgrattan</dc:creator>
		<pubDate>Wed, 12 Sep 2007 13:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-30</guid>
		<description>In the above code, the name of the list is obtained through the nd.Attributes[&quot;Title&quot;].Value call. The GUID is returned through the &quot;ID&quot; attribute. So, to get the list name use the &quot;Title&quot; attribute. Hope this helps, Nick.</description>
		<content:encoded><![CDATA[<p>In the above code, the name of the list is obtained through the nd.Attributes["Title"].Value call. The GUID is returned through the &#8220;ID&#8221; attribute. So, to get the list name use the &#8220;Title&#8221; attribute. Hope this helps, Nick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rudy</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-29</link>
		<dc:creator>Rudy</dc:creator>
		<pubDate>Wed, 12 Sep 2007 12:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-29</guid>
		<description>Hi. I am using a bit of VB 2005 code which extracts SharePoint 2003 List names and displays them in a list box. However when I use SharePoint 2007 the same code extracts the list names as GUIDS. How do I display just the list names in SharePoint 2007? Any help appreciated. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi. I am using a bit of VB 2005 code which extracts SharePoint 2003 List names and displays them in a list box. However when I use SharePoint 2007 the same code extracts the list names as GUIDS. How do I display just the list names in SharePoint 2007? Any help appreciated. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: More SharePoint List Web Service Calls &#171; Nick Grattan&#8217;s Techy Blog</title>
		<link>http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-6</link>
		<dc:creator>More SharePoint List Web Service Calls &#171; Nick Grattan&#8217;s Techy Blog</dc:creator>
		<pubDate>Fri, 27 Jul 2007 11:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://nickgrattan.wordpress.com/2007/07/05/starting-out-programming-sharepoint-services/#comment-6</guid>
		<description>[...] SharePoint List Web Service&#160;Calls   Published July 14th, 2007   SharePoint      In this post I showed how the SharePoint Web Services can be used to get a list of the lists in a [...]</description>
		<content:encoded><![CDATA[<p>[...] SharePoint List Web Service&nbsp;Calls   Published July 14th, 2007   SharePoint      In this post I showed how the SharePoint Web Services can be used to get a list of the lists in a [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
