<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SharePointRoot</title>
	
	<link>http://sharepointroot.com</link>
	<description />
	<lastBuildDate>Wed, 23 May 2012 23:54:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="sharepointroot.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SharePointRoot</title>
		<link>http://sharepointroot.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sharepointroot.com/osd.xml" title="SharePointRoot" />
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Sharepointroot" /><feedburner:info uri="sharepointroot" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://sharepointroot.com/?pushpress=hub" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>SharePoint Console App – Web Application could not be found</title>
		<link>http://sharepointroot.com/2012/05/23/sharepoint-console-app-web-application-could-not-be-found/</link>
		<comments>http://sharepointroot.com/2012/05/23/sharepoint-console-app-web-application-could-not-be-found/#comments</comments>
		<pubDate>Wed, 23 May 2012 23:54:32 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=959</guid>
		<description><![CDATA[When dealing with SharePoint, the code for a WebPart or User Control is ‘within’ the scope of IIS – and thus there is an SPContext you can use. But – if you try code from a Console App – you might get this error : System.IO.FileNotFoundException: The Web application at &#60;URL&#62; could not be found [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=959&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When dealing with SharePoint, the code for a WebPart or User Control is ‘within’ the scope of IIS – and thus there is an SPContext you can use.</p>
<p>But – if you try code from a Console App – you might get this error :</p>
<blockquote><p><font face="Courier New">System.IO.FileNotFoundException: The Web application at &lt;URL&gt; could not be found</font></p>
</blockquote>
<p>The code I’ve been developing is similar to this :</p>
<p><font size="3" face="Courier New">using (SPSite site = new SPSite(sourceWebUrl))     <br />{      <br />&#160;&#160;&#160; using (SPWeb web = site.OpenWeb())      <br />&#160;&#160;&#160; {</font></p>
<p>And – the above error (not found) was happening on the first line.&#160;&#160;&#160; Some searching around highlighted the following tips :</p>
<p>===========================================</p>
<p><b><u>Problem</u></b></p>
<p>When developing against the SharePoint object model in an application outside of IIS (service, console, Winforms etc..) you receive the error “FileNotFoundException” when creating an instance of the SPSite object. </p>
<p><b><u>Resolution</u></b></p>
<p>The user running the application needs to have the following permissions and group membership set:</p>
<ul>
<li>The user is a server farm administrator.</li>
<li>The user has Read and Write permissions on the content database.</li>
<li>The user is a site collection administrator.</li>
<li>The user has permissions to access the Windows SharePoint Services site or the SharePoint Server 2007 site through which the code iterates.</li>
</ul>
<p>Source : <a href="http://social.msdn.microsoft.com/forums/en-US/sharepointdevelopment/thread/5834679b-482b-4924-b881-fa2146840d05/">MSDN (question #10)</a></p>
<p>===========================================</p>
<p>BUT – this didn’t fix the problem…&#160;&#160;&#160;&#160; WTF !? </p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-sadsmile" alt="Sad smile" src="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-sadsmile.png?w=600" /></p>
<p>The <font color="#ff0000"><strong>solution </strong></font>– as it turns out – when dealing with SharePoint 2010 is the “<em><u>platform target</u></em>”.</p>
<p>When you add a new solution/project in Visual Studio, the default is “x86” (32-bit) – and this needs to be changed to “x64” (64-bit) – as SharePoint 2010 is 64-bit (only).</p>
<ul>
<li>Right-click on the solution/project</li>
<li>Click Properties</li>
<li>Switch to the “Build” tab</li>
<li>Make sure to change the dropdown to x64</li>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image9.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb9.png?w=384&h=178" width="384" height="178" /></a></p>
<ul>
<li>Re-build + run the project</li>
<li>Hopefully, that fixed the problem !&#160;&#160;&#160; </li>
<li>Well – it fixed it for ME anyways.&#160;&#160;&#160;&#160; </li>
</ul>
<p>Good luck !</p>
<p>&#160;<img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile2.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/959/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=959&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/05/23/sharepoint-console-app-web-application-could-not-be-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-sadsmile.png" medium="image">
			<media:title type="html">Sad smile</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile2.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Nintex Workflow – Add Workflow Status Column</title>
		<link>http://sharepointroot.com/2012/05/19/nintex-workflow-add-workflow-status-column/</link>
		<comments>http://sharepointroot.com/2012/05/19/nintex-workflow-add-workflow-status-column/#comments</comments>
		<pubDate>Sat, 19 May 2012 11:26:32 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=947</guid>
		<description><![CDATA[Within a SharePoint Document Library, or List, the standard function of a Nintex Workflow is to automatically add a column, that allows a user to see the Workflow Status. This is familiar to developers – it will show “In Progress” – or “Error Occurred” – or “Cancelled”. This is great for users to click “In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=947&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Within a SharePoint Document Library, or List, the standard function of a Nintex Workflow is to automatically add a column, that allows a user to see the Workflow Status.</p>
<p><em>This is familiar to developers – it will show “In Progress” – or “Error Occurred” – or “Cancelled”.</em></p>
<p>This is great for users to click “In Progress” – and thus view the “Current User Task”, and the history of what’s occurred.</p>
<p>But – unfortunately – there’s a few clicks required to view the ‘display workflow’.&#160;&#160; The Nintex Workflow ‘visual’ diagram is a great way for users to get an understanding of the actions at play – but here’s the click-thru :</p>
<ul>
<li>Click the drop-down for the item/document </li>
<li>Click Workflow History </li>
<li>Click on the ‘Running Workflow’ </li>
</ul>
<p>That’s <em><u>THREE</u></em> clicks – and a bunch of potential confusion (and/or training) for users.</p>
<p>Here’s a great tip to include a “View Process Flow” link, within the list view.</p>
<p>=====================================================</p>
<p><u>Add a new column to the SharePoint list/library : </u></p>
<ul>
<li>Name = “Workflow Process” </li>
<li>Column type = “Hyperlink” </li>
</ul>
<p><u>Edit the Workflow :</u></p>
<ul>
<li>Create a new variable – eg.&#160; View Process </li>
<li>Add an activity for “Build Dynamic String” </li>
<li>Click Add Reference – and choose “Workflow Status URL” </li>
<li>Add manual text after that – make sure to include a SPACE and a COMMA – and then the URL text. </li>
<li>It should then look like this : </li>
</ul>
<p><font face="Courier New">{Common:WorkflowStatusUrl}, View Workflow</font></p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image5.png" target="_blank"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb5.png?w=384&h=283" width="384" height="283" /></a></p>
<ul>
<li>Next, add an “Item Update” activity </li>
<li>Select to update the “Workflow Process” column </li>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image6.png" target="_blank"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb6.png?w=384&h=240" width="384" height="240" /></a></p>
<ul>
<li>Save the activity </li>
<li>And then Publish the workflow </li>
</ul>
<p>That’s it !&#160;&#160;&#160; Just need to run the workflow process – and see it in action.</p>
<p>=====================================================</p>
<p>Here’s what the list/library will look like – with the new column.</p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image10.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image10_thumb.png?w=384&h=135" width="384" height="135" /></a></p>
<p>When the user clicks on this link, it will go immediately to the Workflow Status page.</p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image15.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image15_thumb.png?w=384&h=219" width="384" height="219" /></a>     </p>
<p>This technique can be very useful – much easier for users to understand – and there are many other ways you can use this approach.</p>
<p>Simply (1) build a string – including the URL + SPACE + COMMA + TEXT – and (2) set the URL hyperlink field.</p>
<p>Hope this is a cool + useless tip for someone out there…!</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile1.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/947/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=947&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/05/19/nintex-workflow-add-workflow-status-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image10_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image15_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile1.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Get SPWeb + SPList GUID – quickly !</title>
		<link>http://sharepointroot.com/2012/05/04/get-spweb-splist-guid-quickly/</link>
		<comments>http://sharepointroot.com/2012/05/04/get-spweb-splist-guid-quickly/#comments</comments>
		<pubDate>Fri, 04 May 2012 05:46:55 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=932</guid>
		<description><![CDATA[When developing webparts and/or CAML for a query – such as jQuery+JSON – or whatever purpose, you might be needing/wanting to get the “GUID” of the current web. This is a bit tricky – and more annoying than anything. There are some Powershell scripts – and awesome tools like CAML Builder – or SharePoint Manager [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=932&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When developing webparts and/or CAML for a query – such as jQuery+JSON – or whatever purpose, you might be needing/wanting to get the “GUID” of the current web.</p>
<p>This is a bit tricky – and more annoying than anything.</p>
<p>There are some Powershell scripts – and awesome tools like CAML Builder – or SharePoint Manager – but if you don’t have those – and need it quickly, I have a great tip for you…</p>
<ul>
<li>Click Site Settings</li>
<li>Click Content And Structure</li>
<ul>
<ul>
<ul>
<ul>
<ul>
<li>You might need to “go to root site settings” – if you’re within a sub-site</li>
</ul>
</ul>
</ul>
</ul>
</ul>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb.png?w=304&h=253" width="304" height="253" /></a></p>
<p>OR – you can simply enter the URL…&gt;</p>
<p><a title="http://www.sharepointroot.com" href="http://SERVER:PORT/_layouts/sitemanager.aspx">http://SERVER:PORT/_layouts/sitemanager.aspx</a></p>
<ul>
<li>Within the Manage Content and Structure screen, find the site you want to check the GUID.</li>
<li>Here’s the trick – need to RIGHT-CLICK on the URL – and then select PROPERTIES </li>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image1.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb1.png?w=235&h=304" width="235" height="304" /></a></p>
<ul>
<li>Within the dialog, highlight the URL – and right-click + copy</li>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image2.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb2.png?w=249&h=304" width="249" height="304" /></a></p>
<ul>
<li>Then, open a new Notepad screen – and click Paste </li>
</ul>
<p><font face="Courier New">javascript:__doPostBack(&#8216;TreeView1&#8242;,&#8217;sArea:?<font color="#9b00d3">SPWeb:10640412-d27e-433c-abd1-795462d3fa60</font>:\\<font color="#ff0000">SPWeb:c609ba9e-2ff2-413f-ba0c-034ba392dc18</font>:&#8217;)</font></p>
<ul>
<li>Within the URL, the <font color="#9b00d3">first</font> bit is the GUID of the Site Collection</li>
<li>The <font color="#ff0000">second</font> part is the GUID of the SPWeb (ie. the WebSite you want !)</li>
</ul>
<p>Just take a copy of the GUID – and you can then use wherever you need/want.</p>
<p><font face="Courier New">===========================================================</font></p>
<p>To get the GUID of a particular LIST – you can use the same approach.</p>
<ul>
<li>Choose the list you want, and right-click</li>
<li>Copy the URL, and paste into Notepad</li>
</ul>
<p><font face="Courier New">javascript:__doPostBack(&#8216;TreeView1&#8242;,&#8217;sArea:?SPWeb:10640412-d27e-433c-abd1-795462d3fa60:\\<font color="#ff0000">SPList:0e6b1ecd-8573-44ab-b175-9ba561b9571a</font>?SPWeb:10640412-d27e-433c-abd1-795462d3fa60:&#8217;)</font></p>
<p><font face="Courier New">===========================================================</font></p>
<p>Yet another easy way to get an SPList GUID is to look at the “Settings” page for a list.</p>
<ul>
<li>Switch to the List tab (in SP2010) – or just click Settings (in SP2007)</li>
<li>Click List Settings</li>
<li>Click on Audience Targetting Settings</li>
</ul>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image3.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb3.png?w=404&h=261" width="404" height="261" /></a></p>
<ul>
<li>Check the URL – and you have ALL you need</li>
</ul>
<p><a title="http://www.sharepointroot.com" href="http://SERVER:PORT/_layouts/ListEnableTargeting.aspx?List={297def5c-019d-4786-b0b5-fec2099200f5}">http://SERVER:PORT/_layouts/ListEnableTargeting.aspx?List={297def5c-019d-4786-b0b5-fec2099200f5}</a><font color="#585858"></font></p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/05/image4.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/05/image_thumb4.png?w=404&h=204" width="404" height="204" /></a></p>
<p><font face="Courier New">===========================================================</font></p>
<p>These tips/tricks have save me LOTS of time – hope they help you too…!</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/932/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/932/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/932/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=932&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/05/04/get-spweb-splist-guid-quickly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/05/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Show all XML properties (DVWP/XLV)</title>
		<link>http://sharepointroot.com/2012/04/23/show-all-xml-properties-dvwpxlv/</link>
		<comments>http://sharepointroot.com/2012/04/23/show-all-xml-properties-dvwpxlv/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 06:38:12 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=921</guid>
		<description><![CDATA[It’s often tricky to ‘debug’ the XSLT for a DataViewWebPart – and/or the new Cross-List View WebPart (XLV). Usually the hardest part is working out the internal file names – and/or working out the “for each row” notion. I find the best approach is to add a “ListView” – and then link to a separate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=921&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It’s often tricky to ‘debug’ the XSLT for a DataViewWebPart – and/or the new Cross-List View WebPart (XLV).</p>
<p>Usually the hardest part is working out the internal file names – and/or working out the “for each row” notion.</p>
<p>I find the best approach is to add a “ListView” – and then link to a separate XSLT file – which can then be tuned/tweaked within SharePoint Designer – as opposed to “all in one” – ie. one webpart (DVWP).</p>
<p>Let’s show with an example :</p>
<ul>
<li>Create a SharePoint page</li>
<li>Edit page &gt; Insert “Existing List”</li>
<li>Pick “Pages” (or any other list you like)</li>
</ul>
<p>You get a List View WebPart – something similar to this :</p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/04/image.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/04/image_thumb.png?w=354&h=129" width="354" height="129" /></a></p>
<p>Next step is to create an XSLT file that will render out ALL files – ALL rows – ALL values :</p>
<ul>
<li>Click View All Site Content</li>
<li>Open the Style Library folder</li>
<li>Create a folder – entitled CustomXSLT – or whatever you like (perhaps company/client name)</li>
<li>Open Notepad – and paste in the following </li>
</ul>
<p><font face="Courier New">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;     <br />&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;      <br />&lt;xsl:output method=&quot;xml&quot; version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; indent=&quot;yes&quot;/&gt;      <br />&lt;xsl:template match=&quot;/&quot;&gt;      <br />&lt;xmp&gt;&lt;xsl:copy-of select=&quot;*&quot;/&gt;&lt;/xmp&gt;      <br />&lt;/xsl:template&gt;      <br />&lt;/xsl:stylesheet&gt;</font></p>
<ul>
<li>Save the file as something like <u><em>all.xslt</em></u></li>
<li>Upload the file to the Style Library folder</li>
</ul>
<p>Now – we can switch back to the list view you added earlier – and USE this new XSLT file.</p>
<ul>
<li>Click Edit Page &gt; Edit WebPart</li>
<li>Within the “Miscellaneous” section (!), set the XSL link to the file you uploaded</li>
</ul>
<p><font face="Courier New">/Style Library/CustomXSLT/all.xslt</font></p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/04/image1.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/04/image_thumb1.png?w=194&h=244" width="194" height="244" /></a></p>
<p>NOW – you should see ALL the data that the DVWP/XLV is displaying – very (VERY) useful !!</p>
<p>Especially when trying to work out the specific column/file names.</p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/04/image2.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/04/image_thumb2.png?w=404&h=72" width="404" height="72" /></a></p>
<p>Here’s another very useful XSLT snippet – this does a “for each row”. </p>
<p><font color="#000000" face="Courier New">&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;</font></p>
<p><font color="#000000" face="Courier New">&lt;xsl:output method=&quot;html&quot; indent=&quot;no&quot;/&gt;     <br />&#160; &lt;xsl:template match=&quot;/&quot; &gt;      <br />&#160;&#160;&#160; &lt;xsl:variable name=&quot;Rows&quot; select=&quot;/dsQueryResponse/Rows/Row&quot;/&gt;      <br />&#160;&#160;&#160; &lt;xsl:<font color="#ff0000">for-each</font> select=&quot;$Rows&quot;&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;h1&gt;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;@Title&quot;/&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/h1&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;@Body&quot; disable-output-escaping=&quot;yes&quot;/&gt;      <br />&#160;&#160;&#160; &lt;/xsl:for-each&gt;      <br />&#160; &lt;/xsl:template&gt;      <br />&lt;/xsl:stylesheet&gt;</font></p>
<blockquote><p>…..hope this helps someone out there – or simply for MY later reference.</p>
</blockquote>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/04/wlemoticon-smile.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/921/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/921/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/921/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=921&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/04/23/show-all-xml-properties-dvwpxlv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/04/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/04/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/04/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/04/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML5, CSS3, jQuery and REST</title>
		<link>http://sharepointroot.com/2012/03/20/html5-css3-jquery-and-rest/</link>
		<comments>http://sharepointroot.com/2012/03/20/html5-css3-jquery-and-rest/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 01:45:00 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=896</guid>
		<description><![CDATA[Today was my presentation at the Australian SharePoint Conference in Melbourne. I had a bunch of stuff to get through, sorry if I spoke quickly (!!).&#160;&#160; The topics covered were : HTML5 Brief history What/why we need a new HTML New symantic tags New functional tags New API CSS3 New tags BUT – browser support [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=896&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today was my presentation at the Australian SharePoint Conference in Melbourne.</p>
<p>I had a bunch of stuff to get through, sorry if I spoke quickly (!!).&#160;&#160; The topics covered were :</p>
<ul>
<li>HTML5
<ul>
<ul>
<ul>
<ul>
<ul>
<li>Brief history </li>
<li>What/why we need a new HTML </li>
<li>New symantic tags </li>
<li>New functional tags </li>
<li>New API </li>
</ul>
</ul>
</ul>
</ul>
</ul>
</li>
<li>CSS3
<ul>
<ul>
<ul>
<ul>
<ul>
<li>New tags </li>
</ul>
</ul>
</ul>
</ul>
</ul>
</li>
<li>BUT – browser support problems (potentially) </li>
</ul>
<p><u><em>SharePoint 2010 – HTML5 + CSS 3 + XSLT (Demo #1)</em></u></p>
<ul>
<li>jQuery
<ul>
<ul>
<ul>
<ul>
<ul>
<li>Overview + fundamentals </li>
<li>Deploying + using via JavaScript </li>
<li>jQuery Selectors, Actions and Events </li>
</ul>
</ul>
</ul>
</ul>
</ul>
</li>
</ul>
<p><em><u>SharePoint 2010 – jQuery (Demo #2)</u></em></p>
<ul>
<li>REST
<ul>
<ul>
<ul>
<ul>
<li>Overview + introduction </li>
<li>Example URL’s </li>
<li>jQuery + REST + JSON </li>
</ul>
</ul>
</ul>
</ul>
</li>
</ul>
<p><em><u>SharePoint 2010 – REST + JSON (Demo #3)</u></em></p>
<ul>
<li>jQuery Templates
<ul>
<ul>
<ul>
<ul>
<li>Bring it all together </li>
</ul>
</ul>
</ul>
</ul>
</li>
</ul>
<p><em><u>SharePoint 2010 – REST + JSON + jQuery + jQuery Templates (Demo #4)</u></em></p>
<ul>
<li>SharePoint vNext
<ul>
<ul>
<ul>
<ul>
<li>Crystal Ball – what can we expect (?) </li>
<li>Where to from here ? </li>
<li>Get started – learn jQuery, learn REST </li>
</ul>
</ul>
</ul>
</ul>
</li>
</ul>
<p>*PHEW*&#160;&#160;&#160;&#160; See – I told you I had a lot to cover (!!)</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile2.png?w=600" /></p>
<p>If you’d like to have a look at the presentation – and the demos – I’ve loaded them both onto my SkyDrive :</p>
<ul>
<li><a href="https://skydrive.live.com/?cid=1C3FAA236DB1BB5F&amp;id=1C3FAA236DB1BB5F%21403" target="_blank">Chris O’Connor &gt; AUSPC-12</a> </li>
</ul>
<p>Thanks for all those who attended – let me know any comments/feedback on the session…</p>
<p>Cheers !</p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/896/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/896/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/896/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=896&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/03/20/html5-css3-jquery-and-rest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile2.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Search : The crawler could not communicate with the server</title>
		<link>http://sharepointroot.com/2012/03/16/sharepoint-search-the-crawler-could-not-communicate-with-the-server/</link>
		<comments>http://sharepointroot.com/2012/03/16/sharepoint-search-the-crawler-could-not-communicate-with-the-server/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 12:09:26 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=905</guid>
		<description><![CDATA[While trying to establish the Search Crawl on a UAT server, I was having a recurring error : The crawler could not communicate with the server. Check that the server is available and that the firewall access is configured correctly This led me to check a number of things : Default Search Crawl Account – [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=905&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While trying to establish the Search Crawl on a UAT server, I was having a recurring error :</p>
<blockquote><p>The crawler could not communicate with the server. Check that the server is available and that the firewall access is configured correctly</p>
</blockquote>
<p>This led me to check a number of things :</p>
<ul>
<li>Default Search Crawl Account – <font color="#00ff00"><strong>check</strong></font> – it HAS access to the server</li>
<li>Can connect using a browser (with the account) – <font color="#00ff00"><strong>check</strong></font> – that works – while LOCAL logged on (RDP)</li>
<li>Dump index – and re-crawl – no, didn’t fix it.</li>
<li>Try crawling another site collection (eg. Central Admin) – ok – that <u><em>works</em></u> !! </li>
</ul>
<p>I was beginning to run out of ideas, when I suddenly clicked on the page url that was shown in the error log.&#160;&#160; And, I was shown an ACCESS DENIED page (proper ASP.NET stack trace) – for IUSR.</p>
<p>Hang on a sec – that’s the ANON account (!!!)</p>
<p>Yes – my site (intranet) has been extended to also allow anonymous users.</p>
<p>And – here’s the clincher – <u><font color="#ff0000">the page that was the HOME page was not anonymously accessible</font></u>…</p>
<p>My home page was set to be “/SitePages/Home.aspx”.</p>
<p>I changed this to be “/Pages/Home.aspx” – with a new, blank page – checked-in and published – and then tried to re-crawl the content.</p>
<p><strong><font color="#00ff00">SUCCESS !!</font></strong></p>
<p>The simple reasoning is (as far as I can tell) :</p>
<ul>
<li>Search will try to hit the home page in ANON mode <em><u>first</u></em> – when crawling.&#160;&#160; </li>
<li>If this fails (denied) – then crawling STOPS.</li>
<li>If it succeeds, it flips to AUTH mode, and crawls all content happily.</li>
<li>So – make sure your home page is ANON accessible – only if you need ANON access (of course).</li>
<li>If you don’t have it turned on, this is a non-issue.</li>
</ul>
<p>It was a wierd error for sure – I’ll probably never encounter it again – but hope this helps someone !</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile3.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/905/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=905&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/03/16/sharepoint-search-the-crawler-could-not-communicate-with-the-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile3.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Australian SharePoint Conference</title>
		<link>http://sharepointroot.com/2012/03/15/australian-sharepoint-conference/</link>
		<comments>http://sharepointroot.com/2012/03/15/australian-sharepoint-conference/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 10:49:30 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=892</guid>
		<description><![CDATA[It’s only a few days away until the annual ‘down under’ SharePoint conference kicks off – in Melbourne this time. I’m presenting this time ‘round too – wow !&#160;&#160;&#160; Check out the agenda – I’m 2nd session in the ‘Technical – Dev’ track – and you can see my face+bio within the list of presenters. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=892&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It’s only a few days away until the annual ‘down under’ SharePoint conference kicks off – in Melbourne this time.</p>
<p>I’m presenting this time ‘round too – wow !&#160;&#160;&#160; </p>
<p>Check out the <a href="http://www.sharepointconference.com.au/2012/SitePages/ConferenceAgenda.aspx" target="_blank">agenda</a> – I’m 2nd session in the ‘Technical – Dev’ track – and you can see my face+bio within the <a href="http://www.sharepointconference.com.au/2012/SitePages/Speakers.aspx" target="_blank">list of presenters</a>.</p>
<p>Here’s the synopsis about my session :</p>
<blockquote><p><strong>HTML5, CSS3 and jQuery with SharePoint 2010 : what you can (and need to) start doing now.</strong></p>
<p>With the next wave of SharePoint on the way (and Windows 8) &#8211; and the demise of Flash and Silverlight, the new buzz for UI is around HTML5. </p>
<p>This session will detail what this actually means for the current 2010 platform, and what you can start doing now. The session will include demos and show/tell of HTML5, CSS3 and jQuery &#8211; and how you can get started now.</p>
</blockquote>
<p>I’ve been putting together a bunch of demos and slides – which I’ll make available after the session (next Tuesday.&#160;&#160; </p>
<p>Here’s a sneak peak – at one of the slides (the agenda) :</p>
<p><a href="http://sharepointroot.files.wordpress.com/2012/03/image.png" target="_blank"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://sharepointroot.files.wordpress.com/2012/03/image_thumb.png?w=384&h=265" width="384" height="265" /></a></p>
<p>=================================================================</p>
<p>It’s shaping up to be a great conference – with some awesome <a href="http://www.sharepointconference.com.au/2012/SitePages/Keynote.aspx" target="_blank">keynote</a> speakers – Mike Fitzmaurice and Chris Johnson on day one – and then Dan Holme on day two. </p>
<p>AND – I’ll be around chatting to lots of people in the User Group booth – talking about MSPUG (Melbourne SharePoint User Group).</p>
<p>So – if you haven’t signed up for AUSPC yet – make sure you <a href="http://www.sharepointconference.com.au" target="_blank">register</a> – and I’ll see you there !</p>
<p><em>Don’t forget to follow via Twitter as well – the hashtag to check/follow is <a href="https://twitter.com/#!/search/%23AUSPC" target="_blank">#AUSPC</a></em></p>
<p><a href="http://www.sharepointconference.com.au" target="_blank"><img src="http://www.spevents.co.nz/SiteCollectionImages/AUSSPCsquare[1].png?wax-srv=Bn4yAgF1Rg1yWjZcOnXHsw7C" width="450" height="224" /></a></p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile1.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/892/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=892&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/03/15/australian-sharepoint-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/03/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://www.spevents.co.nz/SiteCollectionImages/AUSSPCsquare1.png?wax-srv=Bn4yAgF1Rg1yWjZcOnXHsw7C" medium="image" />

		<media:content url="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile1.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint vNext – what will it be called ?</title>
		<link>http://sharepointroot.com/2012/03/07/sharepoint-vnext-what-will-it-be-called/</link>
		<comments>http://sharepointroot.com/2012/03/07/sharepoint-vnext-what-will-it-be-called/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 22:45:39 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/?p=886</guid>
		<description><![CDATA[Lots of people NOT saying much about the next version of SharePoint – it’s all NDA at the moment.&#160;&#160; I haven’t seen any of it as yet (honest). I’ve heard it referred to as “SharePoint 15” (codename) – and “SharePoint 2013” – but no specific name is concreted or announced. “SharePoint 15” is the codename [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=886&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lots of people NOT saying much about the next version of SharePoint – it’s all NDA at the moment.&#160;&#160; I haven’t seen any of it as yet (honest).</p>
<p>I’ve heard it referred to as “SharePoint 15” (codename) – and “SharePoint 2013” – but no specific name is concreted or announced.</p>
<p>“SharePoint 15” is the codename – so it&#8217; won’t be the final release name.</p>
<p>And Microsoft usually shy away from “13” – as they’re a bit superstitious – with Office 12 (2007) and then Office 14 (2010).&#160;&#160;&#160;&#160; So – I don’t know if it will be “SharePoint 2013” – who knows…!?</p>
<p>Here’s an idea – based on the Office-365 cloud-based solution – they should call it Office-247…!</p>
<p>That way – you can have your on-premise farm as 24/7 – and the cloud 365 days a year.</p>
<p>Office 247 + Office 365 – what d’ya reckon ?!&#160;&#160;&#160;&#160; </p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/886/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/886/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/886/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=886&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2012/03/07/sharepoint-vnext-what-will-it-be-called/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2012/03/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>SP Saturday Melbourne – SharePoint + jQuery</title>
		<link>http://sharepointroot.com/2011/10/22/wrap-up-from-sharepoint-saturday/</link>
		<comments>http://sharepointroot.com/2011/10/22/wrap-up-from-sharepoint-saturday/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 00:59:29 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/2011/10/22/wrap-up-from-sharepoint-saturday/</guid>
		<description><![CDATA[Today was my session about jQuery and SharePoint – and all my demo’s worked – phew ! The main “take-aways” from the session were : jQuery + SharePoint work nicely together – it’s all comes down to HTML in the end…! Easy to create animations WITHOUT needing Flash, Silverlight – or HTML5 Use DVWP – [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=880&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today was my session about jQuery and SharePoint – and all my demo’s worked – phew !</p>
<p>The main “take-aways” from the session were :</p>
<ul>
<li>jQuery + SharePoint work nicely together – it’s all comes down to HTML in the end…!</li>
<li>Easy to create animations WITHOUT needing Flash, Silverlight – or HTML5</li>
<li>Use DVWP – and <em>external XSLT</em> – to construct the HTML you want </li>
<ul>
<ul>
<ul>
<ul>
<ul>
<li>NB. This is a great way to display/layout data – regardless of whether you use jQuery or not !</li>
</ul>
</ul>
</ul>
</ul>
</ul>
</ul>
<p>The main steps from the slides were :</p>
<ul>
<li>Upload the files to SharePoint (JS, CSS)</li>
<li>Include a script reference to use it</li>
<li>Add a DataViewWebPart – to a list (eg. Announcements, Product List)</li>
<li>Configure the XSLT to get the HTML you need/want</li>
<li>Include JavaScript (jQuery syntax) to do Accordian, Click, Hover, Cycle, etc…</li>
</ul>
<p>The session today showed three main demos – which I’ll blog about ‘separately’ :</p>
<ul>
<li>SharePoint Announcements list – Accordian </li>
<li>SharePoint Image list – Image Rotator (photos of bikes/mountain bikes)</li>
<li>SharePoint Announcements list – News Rotator</li>
</ul>
<p>I’ve uploaded the files from today’s session (to SkyDrive) :</p>
<ul>
<li>Slide Deck (PPTX) : 396 KB</li>
<li>ZIP containing jQuery + scripts + XSLT : 109 kb</li>
<li>Click here to go to the <a href="https://skydrive.live.com/?cid=1c3faa236db1bb5f&amp;sc=documents&amp;uc=2&amp;id=1C3FAA236DB1BB5F%21387#" target="_blank">SkyDrive folder</a> for these files…</li>
</ul>
<p>If you were at SharePoint Saturday – let me know any comments/feedback.</p>
<p>And – keep an eye on my blog/twitter – for an in-depth run-down of each of the demo’s…</p>
<p>Cheers !</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2011/10/wlemoticon-smile1.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/880/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/880/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/880/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=880&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2011/10/22/wrap-up-from-sharepoint-saturday/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2011/10/wlemoticon-smile1.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>I’m presenting – SharePoint Saturday Melbourne</title>
		<link>http://sharepointroot.com/2011/10/19/im-presenting-sharepoint-saturday-melbourne/</link>
		<comments>http://sharepointroot.com/2011/10/19/im-presenting-sharepoint-saturday-melbourne/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 11:31:30 +0000</pubDate>
		<dc:creator>Chris O'Connor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepointroot.wordpress.com/2011/10/19/im-presenting-sharepoint-saturday-melbourne/</guid>
		<description><![CDATA[This coming Saturday is Melbourne’s turn for SharePoint Saturday – after some great events in Brisbane, Canberra and Sydney – over the last few months SharePoint Saturday (SPSat) has become an amazing ‘movement’ within the SharePoint community – the day is free for all attendees – including lunch – thanks to generous sponsors, and a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=878&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This coming Saturday is Melbourne’s turn for SharePoint Saturday – after some great events in Brisbane, Canberra and Sydney – over the last few months</p>
<p><a href="http://www.sharepointsaturday.org">SharePoint Saturday</a> (SPSat) has become an amazing ‘movement’ within the SharePoint community – the day is free for all attendees – including lunch – thanks to generous sponsors, and a lot of hard work from the organisers (thanks – btw !)</p>
<blockquote><p>This weekend also has SharePoint Saturday’s happening in Manila, Minnesota – and Minsk (Belarus – near Russia).&#160;&#160; </p>
<p>Make sure you don’t go to the wrong venue – NOT at the <a href="http://www.hotel-victoria.by/">Hotel Victoria</a> !</p>
</blockquote>
<p>For *MY* presentation this Saturday, I have re-jigged my session from TechEd – showing how to implement <em><u>jQuery</u> </em>within a <em><u>SharePoint 2010</u> </em>environment.</p>
<p>I’ll show a quick overview – and then onto some demo’s :</p>
<ul>
<li>Include jQuery within the Master Page</li>
<li>Add a DataView WebPart</li>
<li>Change some XSLT</li>
<li>Add some jQuery (JavaScript) statements</li>
<li>And voila !&#160;&#160;&#160; </li>
<li>Animations without using FLASH…(!)</li>
</ul>
<p>The demos will cover three main functions/features :</p>
<ul>
<li>Accordian</li>
<li>Image Rotator</li>
<li>News Rotator</li>
</ul>
<p>Each of these are easy to get working – with some great tips &amp; tricks for data views as well – DON’T write code for rendering out data !&#160;&#160;&#160; I’ll show you why/how.</p>
<p>After SharePoint Saturday, I’ll write up a little more about the demo’s – and have some code/samples to download.&#160;&#160; But – for now – you’ll just have to come along and see !</p>
<p>Here are the main details :</p>
<ul>
<li>Register via EventBrite : <a href="http://spsmel11.eventbrite.com/">SharePoint Saturday Melbourne – Oct. 22nd </a></li>
<li>Venue : <a href="http://www.bing.com/maps/?mm_embed=map&amp;cp=-37.81742896256705~144.95978218933527&amp;lvl=16&amp;sty=r&amp;where1=440+Collins+St%2C+Melbourne%2C+VIC+3000">Cliftons, 1/440 Collins St, Melbourne</a></li>
<li>Click here to check out the <a title="Here’s the schedule (PDF) – make sure to have a look and ‘plan your day’" href="http://sharepointsaturday.org/melbourne/Shared%20Documents/Schedule.pdf">schedule (PDF)</a> – with the list of speakers and topics – and timeslots</li>
<li>And – if you can’t make it along – follow the action via Twitter – using the hashtag <a href="http://twitter.com/#!/search?q=%23SPSMEL">#SPSMEL</a></li>
</ul>
<blockquote><p>P.S.&#160; This event is being presented/supported by the “Melbourne SharePoint User Group” (MSPUG).</p>
<p><a href="http://mspuginfo.wordpress.com/">Click here for more information – and to subscribe to the newsletter</a>.</p>
</blockquote>
<p>Hope to see you there – Viva la SharePoint Saturday !</p>
<p><img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://sharepointroot.files.wordpress.com/2011/10/wlemoticon-smile.png?w=600" /></p>
<br />Filed under: <a href='http://sharepointroot.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointroot.wordpress.com/878/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointroot.wordpress.com/878/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointroot.wordpress.com/878/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointroot.com&#038;blog=11567549&#038;post=878&#038;subd=sharepointroot&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepointroot.com/2011/10/19/im-presenting-sharepoint-saturday-melbourne/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Grumpy Wookie</media:title>
		</media:content>

		<media:content url="http://sharepointroot.files.wordpress.com/2011/10/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
	</channel>
</rss>

