<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>A rolling stone gathers no... MOSS 2007 / SharePoint 2010</title>
	<atom:link href="http://statto1974.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://statto1974.wordpress.com</link>
	<description>My musings on SharePoint products and technologies</description>
	<lastBuildDate>Fri, 18 Nov 2011 08:49:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='statto1974.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A rolling stone gathers no... MOSS 2007 / SharePoint 2010</title>
		<link>http://statto1974.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://statto1974.wordpress.com/osd.xml" title="A rolling stone gathers no... MOSS 2007 / SharePoint 2010" />
	<atom:link rel='hub' href='http://statto1974.wordpress.com/?pushpress=hub'/>
		<item>
		<title>RunAs method for running code in specific user SPServiceContext</title>
		<link>http://statto1974.wordpress.com/2011/10/25/runas-method-for-running-code-in-specific-user-spservicecontext/</link>
		<comments>http://statto1974.wordpress.com/2011/10/25/runas-method-for-running-code-in-specific-user-spservicecontext/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 13:07:19 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[RunWithElevatedPrivileges]]></category>
		<category><![CDATA[SPServiceContext]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/?p=134</guid>
		<description><![CDATA[You may have the need to run some code in a SPServiceContext of a specific user. e.g. when dealing with user profiles or activities. This can be achieved by using a combination of the SPUser, WindowsIdentity, GenericPrincipal and the GetContext method of SPServiceContext. From these we can set the HttpContext.Current.User property to the specified user. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=134&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You may have the need to run some code in a SPServiceContext of a specific user. e.g. when dealing with user profiles or activities.</p>
<p>This can be achieved by using a combination of the SPUser, WindowsIdentity, GenericPrincipal and the GetContext method of SPServiceContext.</p>
<p>From these we can set the HttpContext.Current.User property to the specified user.</p>
<p>Don&#8217;t forget to set the context back after the code has executed!</p>
<p>Below is a helper method that makes this very easy.</p>
<p>I haven&#8217;t done any solid testing on performance etc. so the usual caveats apply.</p>
<p><pre class="brush: csharp;">

// Example calling code

RunAs(&quot;http://asharepointsite&quot;, &quot;THEDOMAIN\THEUSER&quot;, c =&gt;
{
    // The code to execute. e.g. get a the UserProfileManager as the passed in user
    var upm = new UserProfileManager(c, true);

    // Do some stuff to the UPM as the passed in user
});

// Helper method

private static void RunAs(string siteUrl, string userName, Action&lt;SPServiceContext&gt; contextToUse)
{
    try
    {
        var currentSetting = false;
        var currentHttpContext = HttpContext.Current;
        SPUser currentUser = null;

        if (SPContext.Current != null)
        {
            if (SPContext.Current.Web != null)
            {
                currentUser = SPContext.Current.Web.CurrentUser;
            }
        }

        SPSecurity.RunWithElevatedPrivileges(delegate
        {
            using (var site = new SPSite(siteUrl))
            {
                using (var web = site.OpenWeb())
                {
                    try
                    {
                        var user = web.EnsureUser(userName);

                        currentSetting = web.AllowUnsafeUpdates;
                        web.AllowUnsafeUpdates = true;

                        var request = new HttpRequest(&quot;&quot;, web.Url, &quot;&quot;);

                        HttpContext.Current = new HttpContext(request,
                                                                new HttpResponse(
                                                                    new StringWriter(CultureInfo.CurrentCulture)));

                        HttpContext.Current.Items[&quot;HttpHandlerSPWeb&quot;] = web;

                        var wi = WindowsIdentity.GetCurrent();

                        var newfield = typeof (WindowsIdentity).GetField(&quot;m_name&quot;,
                                                                            BindingFlags.NonPublic |
                                                                            BindingFlags.Instance);

                        if (newfield != null) newfield.SetValue(wi, user.LoginName);

                        if (wi != null) HttpContext.Current.User = new GenericPrincipal(wi, new string[0]);

                        var elevatedContext = SPServiceContext.GetContext(HttpContext.Current);

                        contextToUse(elevatedContext);

                        //Set the HTTPContext back to &quot;normal&quot;
                        HttpContext.Current = currentHttpContext;

                        if (currentUser != null)
                        {
                            var winId = WindowsIdentity.GetCurrent();

                            var oldField = typeof (WindowsIdentity).GetField(&quot;m_name&quot;,
                                                                                BindingFlags.NonPublic |
                                                                                BindingFlags.Instance);

                            if (oldField != null) oldField.SetValue(winId, currentUser.LoginName);

                            if (winId != null)
                                HttpContext.Current.User = new GenericPrincipal(winId, new string[0]);
                        }
                    }
                    catch (Exception ex)
                    {
                        // Log or whatever
                    }
                    finally
                    {
                        web.AllowUnsafeUpdates = currentSetting;
                    }
                }
            }
        });

    }
    catch (Exception exO)
    {
        // Log or whatever
    }
}

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=134&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2011/10/25/runas-method-for-running-code-in-specific-user-spservicecontext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>Fun and games with the ActivityEvent</title>
		<link>http://statto1974.wordpress.com/2011/03/14/fun-and-games-with-the-activityevent/</link>
		<comments>http://statto1974.wordpress.com/2011/03/14/fun-and-games-with-the-activityevent/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 19:11:50 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[ActivityEvent]]></category>
		<category><![CDATA[ActivityTemplateVariable]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[MySite]]></category>
		<category><![CDATA[Newsfeed]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/?p=130</guid>
		<description><![CDATA[I haven&#8217;t seen a massive amount of documentation on MSDN or other posts about this, so I thought I would write a small note. This details a way of extracting the info you see in the news feed on your &#8216;My Site&#8217; First of all you need to get the the format used by the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=130&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t seen a massive amount of documentation on MSDN or other posts about this, so I thought I would write a small note.</p>
<p>This details a way of extracting the info you see in the news feed on your &#8216;My Site&#8217;</p>
<p>First of all you need to get the the format used by the <strong>ActivityEvent</strong>, this done using <strong>ActivityType</strong> and <strong>ActivityTemplate</strong>.</p>
<p><code><br />
<span style="color:#008080;">ActivityType</span> type = activityMan.ActivityTypes[activity.ActivityEventId];<br />
ActivityTemplate template = type.ActivityTemplates[<span style="color:#008080;">ActivityTemplatesCollection</span>.CreateKey(false)];<br />
string format = GetResourceString(template.TitleFormatLocStringResourceFile, template.TitleFormatLocStringName, (<span style="color:#3366ff;">uint</span>)<span style="color:#008080;">CultureInfo</span>.CurrentUICulture.LCID);<br />
</code></p>
<p>The format variable will now contain something along the lines of &#8220;{Pubisher} has posted a note {Link} on {PublishDate}&#8221;</p>
<p>Now you could at this point take the corresponding Properties in the <strong>ActivityEvent</strong>, but there is a whole load of formatting that needs to be done. The Publisher Tag needs to be turned into a link to the users profile page and display their name, etc, etc.</p>
<p>There is an easier way, you can use the static methods of the <strong>ActivityTemplateVariable</strong>.</p>
<p><code><br />
<span style="color:#008080;">ActivityTemplateVariable</span>.DateOnlyToString(tag, variable, ContentType.Html, <span style="color:#008080;">CultureInfo</span>.CurrentCulture);<br />
</code></p>
<p>The problem here is that you have to pass in an <strong>ActivityTemplateVariable</strong> as one of the parameter and there is no obvious way of doing this.</p>
<p>There are no properties or methods in the <strong>ActivityEvent</strong> that give you an <strong>ActivityTemplateVariable</strong> or is there?</p>
<p>After further investigation of the <strong>TemplateVariable</strong> string property, you can see that this actually returns an XML string. This XML string is a de-serialised <strong>ActivityTemplateVariable</strong> object.</p>
<p><code><br />
<span style="color:#0000ff;">var</span> variable = (<span style="color:#008080;">ActivityTemplateVariable</span>)FromXml(item.TemplateVariable, <span style="color:#0000ff;">typeof</span>(ActivityTemplateVariable));<br />
</code></p>
<p>You can now use this object to pass to the static method of <strong>ActivityTemplateVariable</strong> to return the full HTML representation of the tag.</p>
<p>If you then combine that with <strong>SimpleTemplateFormat</strong> you can then loop round all the tags and replace them.</p>
<p><code><br />
<span style="color:#0000ff;">var</span> items = <span style="color:#008080;">SimpleTemplateFormat</span>.SimpleParse(formatToUse);<br />
</code></p>
<p>I&#8217;ll try and upload a code sample soon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=130&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2011/03/14/fun-and-games-with-the-activityevent/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>Add you support for a SharePoint Overflow Q&amp;A site</title>
		<link>http://statto1974.wordpress.com/2011/03/01/add-you-support-for-a-sharepoint-overflow-qa-site/</link>
		<comments>http://statto1974.wordpress.com/2011/03/01/add-you-support-for-a-sharepoint-overflow-qa-site/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 15:26:12 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/?p=124</guid>
		<description><![CDATA[Please follow this link and show your commitment to a new SharePoint Overflow Q&#38;A site. http://area51.stackexchange.com/proposals/28921/sharepoint-overflow?referrer=1TGRHFSrtrcnXLaDPCj7kA2 &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=124&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please follow this link and show your commitment to a new SharePoint Overflow Q&amp;A site.</p>
<p><a title="SharePoint Overflow Q&amp;A Proposal" href="http://area51.stackexchange.com/proposals/28921/sharepoint-overflow?referrer=1TGRHFSrtrcnXLaDPCj7kA2" target="_blank">http://area51.stackexchange.com/proposals/28921/sharepoint-overflow?referrer=1TGRHFSrtrcnXLaDPCj7kA2</a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=124&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2011/03/01/add-you-support-for-a-sharepoint-overflow-qa-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>Finding the SMTP server address through code in SharePoint 2010</title>
		<link>http://statto1974.wordpress.com/2011/02/13/finding-the-smtp-server-address-through-code-in-sharepoint-2010/</link>
		<comments>http://statto1974.wordpress.com/2011/02/13/finding-the-smtp-server-address-through-code-in-sharepoint-2010/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 10:23:38 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">https://statto1974.wordpress.com/2011/02/13/finding-the-smtp-server-address-through-code-in-sharepoint-2010/</guid>
		<description><![CDATA[If anyone knows a better way then let me know. string smtp = string.Empty; SPFarm.Local.Servers.ForEach(s =&#62; s.ServiceInstances.ForEach(i =&#62; { if (i is SPOutboundMailServiceInstance) { smtp = s.Address; } })); return smtp; I use a ForEach extension which I&#8217;ve included below public static void ForEach&#60;T&#62;(this IEnumerable&#60;T&#62; enumerable, Action&#60;T&#62; action) { foreach (T item in enumerable) { [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=120&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="font:9.5px Helvetica;"><font size="3"><span style="font-size:12px;">If anyone knows a better way then let me know.</span></font></p>
<p style="font:9.5px Helvetica;"><span style="color:#2c2cf6;">string</span> smtp = <span style="color:#2c2cf6;">string</span>.Empty;</p>
<p style="font:9.5px Helvetica;"><span style="color:#29a2ba;">SPFarm</span>.Local.Servers.ForEach(s =&gt; s.ServiceInstances.ForEach(i =&gt;<br />
{<br />
<span style="color:#29A2BA;"><span style="color:#2c2cf6;">if</span> <span style="color:#000000;">(i</span> <span style="color:#2c2cf6;">is</span> SPOutboundMailServiceInstance<span style="color:#000000;">)<br /></span></span> {<br />
smtp = s.Address;<br />
}<br />
}));</p>
<p style="font:9.5px Helvetica;min-height:11px;"><span style="color:#2c2cf6;">return</span> smtp;</p>
<p>
I use a ForEach extension which I&#8217;ve included below</p>
<p style="font:9.5px Helvetica;"><span style="color:#2c2cf6;">public</span> <span style="color:#2c2cf6;">static</span> <span style="color:#2c2cf6;">void</span> ForEach&lt;T&gt;(<span style="color:#2c2cf6;">this</span> <span style="color:#29a2ba;">IEnumerable</span>&lt;T&gt; enumerable, <span style="color:#29a2ba;">Action</span>&lt;T&gt; action)</p>
<p style="font:9.5px Helvetica;">{</p>
<p style="font:9.5px Helvetica;"><span style="color:#2c2cf6;">foreach</span> (T item <span style="color:#2c2cf6;">in</span> enumerable)</p>
<p style="font:9.5px Helvetica;">{</p>
<p style="font:9.5px Helvetica;">action(item);</p>
<p style="font:9.5px Helvetica;">}</p>
<p style="font:9.5px Helvetica;">}</p>
<p></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=120&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2011/02/13/finding-the-smtp-server-address-through-code-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>Dilbert on SharePoint (via SharePoint Tech Blog)</title>
		<link>http://statto1974.wordpress.com/2010/11/17/dilbert-on-sharepoint-via-sharepoint-tech-blog/</link>
		<comments>http://statto1974.wordpress.com/2010/11/17/dilbert-on-sharepoint-via-sharepoint-tech-blog/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 09:37:26 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/2010/11/17/dilbert-on-sharepoint-via-sharepoint-tech-blog/</guid>
		<description><![CDATA[Very true via SharePoint Tech Blog<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=119&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Very true<br />
<blockquote cite='http://sptechblog.wordpress.com/?p=98' style='overflow:hidden;'>
<p><a href='http://sptechblog.wordpress.com/?p=98' title='SharePoint Tech Blog'><img src="http://sptechblog.files.wordpress.com/2009/09/dilbert1.jpg?h=350&#038;w=600" height="350" alt="Dilbert on SharePoint" class="align-left thumbnail alignleft left" style="max-width:100%;" /></a></p>
</blockquote>
<p>via <a href='http://sptechblog.wordpress.com/?p=98' title='SharePoint Tech Blog'>SharePoint Tech Blog</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=119&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2010/11/17/dilbert-on-sharepoint-via-sharepoint-tech-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>

		<media:content url="http://sptechblog.files.wordpress.com/2009/09/dilbert1.jpg?h=350" medium="image">
			<media:title type="html">Dilbert on SharePoint</media:title>
		</media:content>
	</item>
		<item>
		<title>The hidden User Information List and the Email field</title>
		<link>http://statto1974.wordpress.com/2010/11/04/the-hidden-user-information-list-and-the-email-field/</link>
		<comments>http://statto1974.wordpress.com/2010/11/04/the-hidden-user-information-list-and-the-email-field/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 12:33:12 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/?p=116</guid>
		<description><![CDATA[More of a reminder to myself. The internal name for Email in the hidden User Information list is EMail and not Email. I came across this when doing a SiteDataQuery on this list and using rather than The email was never returned in the DataTable.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=116&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>More of a reminder to myself.</p>
<p>The internal name for Email in the hidden User Information list is EMail and not Email.</p>
<p>I came across this when doing a SiteDataQuery on this list and using  rather than </p>
<p>The email was never returned in the DataTable.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=116&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2010/11/04/the-hidden-user-information-list-and-the-email-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>SPServiceContext or SPContext in SharePoint 2010</title>
		<link>http://statto1974.wordpress.com/2009/10/26/spservicecontext-or-spcontext-in-sharepoint-2010/</link>
		<comments>http://statto1974.wordpress.com/2009/10/26/spservicecontext-or-spcontext-in-sharepoint-2010/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 15:49:31 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Conference 2009]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/2009/10/26/spservicecontext-or-spcontext-in-sharepoint-2010/</guid>
		<description><![CDATA[After attending the SharePoint Conference 2009, I&#8217;m just trying to get clarification on the use of SPServiceContext and SPContext. In a couple of the developer sessions, the speakers suggested we should use SPServiceContext now instead of SPContext. Is there an instance where we should use one over the other or should it now always be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=115&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After attending the SharePoint Conference 2009, I&#8217;m just trying to get clarification on the use of SPServiceContext and SPContext.</p>
<p>In a couple of the developer sessions, the speakers suggested we should use SPServiceContext now instead of SPContext.</p>
<p>Is there an instance where we should use one over the other or should it now always be SPServiceContext?</p>
<p>Any feedback would be greatly appreciated.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=115&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2009/10/26/spservicecontext-or-spcontext-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Conference 2009 &#8211; Day Two</title>
		<link>http://statto1974.wordpress.com/2009/10/22/sharepoint-conference-2009-day-two/</link>
		<comments>http://statto1974.wordpress.com/2009/10/22/sharepoint-conference-2009-day-two/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:54:43 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Conference 2009]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/2009/10/22/sharepoint-conference-2009-day-two/</guid>
		<description><![CDATA[I&#8217;ve now managed to get my head around most of the new and enhanced features of SharePoint 2010. My main focus has been around enterprise search and social computing. Two areas I believe are going to massive, when SharePoint 2010 gets released. I managed to attend the following sessions; SharePoint 2010 Search: Capabilities Deep Dive [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=114&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="4"><span style="font-size:14px;">I&#8217;ve now managed to get my head around most of the new and enhanced features of SharePoint 2010.</span></font></p>
<p><font size="4"><span style="font-size:14px;">My main focus has been around enterprise search and social computing. Two areas I believe are going to massive, when SharePoint 2010 gets released.</span></font></p>
<p><font size="4"><span style="font-size:14px;">I managed to attend the following sessions;</span></font></p>
<ul>
<li><font size="4"><span style="font-size:14px;">SharePoint 2010 Search: Capabilities Deep Dive</span></font></li>
<li><font size="4"><span style="font-size:14px;">Adoption Strategies for Social Computing</span></font></li>
<li><font size="4"><span style="font-size:14px;">Microsoft Unified Communications and Collaboration in Action</span></font></li>
<li><font size="4"><span style="font-size:14px;">Deep Dive into SharePoint 2010 My Sites and Social Networking Architecture</span></font></li>
<li><font size="4"><span style="font-size:14px;">Search Relevance and Relevance tuning</span></font></li>
</ul>
<p><font size="4"><span style="font-size:14px;">There has been a large investment in the new and enhanced features. My Sites have become the hub for interacting with people through My Sites, User Profiles, Status Updates, Activity Feeds and Knowledge Mining.</span></font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=114&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2009/10/22/sharepoint-conference-2009-day-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Conference 2009 &#8211; Day One</title>
		<link>http://statto1974.wordpress.com/2009/10/20/sharepoint-conference-2009-day-one/</link>
		<comments>http://statto1974.wordpress.com/2009/10/20/sharepoint-conference-2009-day-one/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 17:10:46 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Conference 2009]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/2009/10/20/sharepoint-conference-2009-day-one/</guid>
		<description><![CDATA[Well I made it. After travelling for about 12 hours from London to San Fransico to Las Vegas and managed to get over the jet lag (nothing to do with Vegas!) Today was about getting to know the new version of SharePoint 2010. We were given an introduction to the product by Steve Ballmer (Microsoft [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=113&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="font-size:14px;">Well I made it. After travelling for about 12 hours from London to San Fransico to Las Vegas and managed to get over the jet lag (nothing to do with Vegas!)</p>
<p style="font-size:14px;">Today was about getting to know the new version of SharePoint 2010.</p>
<p style="font-size:14px;">We were given an introduction to the product by Steve Ballmer (Microsoft CEO) and Jeff Tepper (Corporate Vice President). There were some nice little sneak peaks and I was surprised that the first demo was a code demo!</p>
<p style="font-size:14px;">My first break session was the &#8220;SharePoint 2010 Overview and What&#8217;s New&#8221; and this gave me a good overview of all the exciting new features available in SharePoint 2010.</p>
<p style="font-size:14px;">Here is a break down (In no particular order) of some of the most exciting</p>
<p style="font-size:14px;">
<ul>
<li>PowerPivot (Project &#8216;Gemini&#8217;)</li>
<li>Taxonomy management including tagging and ratings,</li>
<li>Business Connectivity Services and External Content Types</li>
<li>Visual Studio 2010 Tools for SharePoint</li>
<li>Excel, Access and Visio Services and the Office Web Apps</li>
<li>Sandboxed Solutions</li>
</ul>
<p style="font-size:14px;">There is a shed load of more features and I&#8217;ll blog on them, when I know more.</p>
<p style="font-size:14px;">I then made it along to the &#8216;Introduction to SharePoint Designer 2010&#8242; and &#8216;Overview of Social Computing in SharePoint 2010&#8242;. The Social Computing of SharePoint 2010 has been greatly improved and their definitely seems to be a nod to Facebook there (The status update and note board).</p>
<p style="font-size:14px;">
<img src="http://statto1974.files.wordpress.com/2009/10/img_0189.jpg?w=480&#038;h=360" width="480" height="360" alt="IMG_0189.JPG" /> <img src="http://statto1974.files.wordpress.com/2009/10/img_0188.jpg?w=480&#038;h=360" width="480" height="360" alt="IMG_0188.JPG" /></p>
<p style="font-size:14px;"></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=113&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2009/10/20/sharepoint-conference-2009-day-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>

		<media:content url="http://statto1974.files.wordpress.com/2009/10/img_0189.jpg" medium="image">
			<media:title type="html">IMG_0189.JPG</media:title>
		</media:content>

		<media:content url="http://statto1974.files.wordpress.com/2009/10/img_0188.jpg" medium="image">
			<media:title type="html">IMG_0188.JPG</media:title>
		</media:content>
	</item>
		<item>
		<title>Pictures from the SharePoint Conference 2009</title>
		<link>http://statto1974.wordpress.com/2009/10/19/pictures-from-the-sharepoint-conference-2009/</link>
		<comments>http://statto1974.wordpress.com/2009/10/19/pictures-from-the-sharepoint-conference-2009/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 21:55:41 +0000</pubDate>
		<dc:creator>Toby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[SharePoint2010]]></category>

		<guid isPermaLink="false">http://statto1974.wordpress.com/2009/10/19/pictures-from-the-sharepoint-conference-2009/</guid>
		<description><![CDATA[Some pictures from the conference so far<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=110&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some pictures from the conference so far</p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_2c1afca3-a403-40f3-936c-1118c9985126.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_2c1afca3-a403-40f3-936c-1118c9985126.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_0ddfb0af-fc1b-43bd-8576-7fd4a200560e.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_0ddfb0af-fc1b-43bd-8576-7fd4a200560e.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_fb3a1be6-2a13-44a8-b75e-8df395538ae4.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_fb3a1be6-2a13-44a8-b75e-8df395538ae4.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_8956b4c4-5ab6-458e-acf0-ffb1dac95961.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_8956b4c4-5ab6-458e-acf0-ffb1dac95961.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_e49452a5-a1c8-49ce-9b42-e33cc7ed911e.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_e49452a5-a1c8-49ce-9b42-e33cc7ed911e.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_a3041564-fee5-4f9d-9dd5-3b55ea7de2d2.jpeg"><img src="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_a3041564-fee5-4f9d-9dd5-3b55ea7de2d2.jpeg?w=600" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statto1974.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statto1974.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statto1974.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=statto1974.wordpress.com&amp;blog=1043105&amp;post=110&amp;subd=statto1974&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://statto1974.wordpress.com/2009/10/19/pictures-from-the-sharepoint-conference-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f7e6f0ed0ef15cd535abbdf2c0a82b5b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">statto1974</media:title>
		</media:content>

		<media:content url="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_2c1afca3-a403-40f3-936c-1118c9985126.jpeg" medium="image" />

		<media:content url="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_0ddfb0af-fc1b-43bd-8576-7fd4a200560e.jpeg" medium="image" />

		<media:content url="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_fb3a1be6-2a13-44a8-b75e-8df395538ae4.jpeg" medium="image" />

		<media:content url="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_8956b4c4-5ab6-458e-acf0-ffb1dac95961.jpeg" medium="image" />

		<media:content url="http://statto1974.files.wordpress.com/2009/10/l_2048_1536_e49452a5-a1c8-49ce-9b42-e33cc7ed911e.jpeg" medium="image" />

		<media:content url="http://statto1974.files.wordpress.com/2009/10/p_2048_1536_a3041564-fee5-4f9d-9dd5-3b55ea7de2d2.jpeg" medium="image" />
	</item>
	</channel>
</rss>
