<?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>Alex&#039;s SharePoint Blog</title>
	<atom:link href="http://sharepointcoding.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sharepointcoding.wordpress.com</link>
	<description>A day in the life of a gadget loving SharePoint/Application Developer.</description>
	<lastBuildDate>Thu, 03 Dec 2009 17:11:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sharepointcoding.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/714a5d679be09c9afac49286d5479dba?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Alex&#039;s SharePoint Blog</title>
		<link>http://sharepointcoding.wordpress.com</link>
	</image>
			<item>
		<title>Silverlight &amp; Cross-Domain Policy</title>
		<link>http://sharepointcoding.wordpress.com/2009/12/03/silverlight-cross-domain-policy/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/12/03/silverlight-cross-domain-policy/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 17:11:29 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[.NET Development]]></category>
		<category><![CDATA[SharePoint Development]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Silverlight 3.0]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/12/03/silverlight-cross-domain-policy/</guid>
		<description><![CDATA[If you are creating a Silverlight application that makes calls to a web service – either WCF or standard ASP.NET based then you will more than likely need an xml ‘policy’ file that allows cross domain access.
In my case I was calling one of the SharePoint inbuilt web services – lists.asmx from my silverlight application. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=381&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you are creating a Silverlight application that makes calls to a web service – either WCF or standard ASP.NET based then you will more than likely need an xml ‘policy’ file that allows cross domain access.</p>
<p>In my case I was calling one of the SharePoint inbuilt web services – lists.asmx from my silverlight application. When I tried to debug the application I received the following error &#8211; </p>
<p><strong><em>An error occurred while trying to make a request to URI ‘http://localhost/sites/mysite/_vti_bin/lists.asmx’. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place.</em></strong></p>
<p>To fix this problem you need to create an xml file called ‘clientaccesspolicy.xml’ with the following content &#8211; </p>
<p><font color="#0000ff"><strong>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;       <br />&lt;access-policy&gt;        <br />&#160;&#160;&#160; &lt;cross-domain-access&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;policy&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;allow-from http-request-headers=&quot;*&quot;&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;domain uri=&quot;*&quot; /&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/allow-from&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;grant-to&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;resource path=&quot;/&quot; include-subpaths=&quot;true&quot;/&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/grant-to&gt;        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/policy&gt;        <br />&#160;&#160;&#160; &lt;/cross-domain-access&gt;        <br />&lt;/access-policy&gt;</strong></font></p>
<p>This xml file should be placed in the IIS virtual directory where your web service is located. In my case the SharePoint site collection that contained the web service was inside the IIS default website so I put the xml file in ‘C:\Inetpub\wwwroot’.</p>
<p>Once you have created this xml file make sure you do an IISRESET. Your silverlight application should now be calling the web service correctly and not throwing the above exception.</p>
<p>Hope this helps <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/381/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=381&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/12/03/silverlight-cross-domain-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>
	</item>
		<item>
		<title>Powershell scripts for SharePoint 2010 services &#8211; &#8216;Stop &amp; Start&#8217;</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/26/powershell-scripts-for-sharepoint-2010-services-stop-start/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/26/powershell-scripts-for-sharepoint-2010-services-stop-start/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:32:43 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint Foundation]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/26/powershell-scripts-for-sharepoint-2010-services-stop-start/</guid>
		<description><![CDATA[We all now know that SharePoint 2010 is resource intensive, especially intensive with its ram usage. 
I originally installed full blown SharePoint 2010 on my laptop (which has 4gb of ram) only to see most of that ram being used up and none left for visual studio to run.
I would recommend anyone who wants to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=378&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We all now know that SharePoint 2010 is resource intensive, especially intensive with its ram usage. </p>
<p>I originally installed full blown SharePoint 2010 on my laptop (which has 4gb of ram) only to see most of that ram being used up and none left for visual studio to run.</p>
<p>I would recommend anyone who wants to install it on their workstation that only has 4gb of ram to install SharePoint Foundation instead which needs much less ram and will be fine for simple SharePoint 2010 dev or just playing around.</p>
<p>After I had installed it on my workstation I went on a search of some powershell scripts that I could use to stop SharePoint’s services when its not in use and start them up when needed.</p>
<p>It turns out Emmanuel Bergerat had created some and posted them on his blog, see here &#8211; </p>
<p><a title="http://blogs.msdn.com/emberger/archive/2009/11/16/stop-and-go-with-sharepoint-2010-on-your-workstation.aspx" href="http://blogs.msdn.com/emberger/archive/2009/11/16/stop-and-go-with-sharepoint-2010-on-your-workstation.aspx">http://blogs.msdn.com/emberger/archive/2009/11/16/stop-and-go-with-sharepoint-2010-on-your-workstation.aspx</a></p>
<p>Thanks Emmanuel!</p>
<p>I have modified these scripts to work with SharePoint Foundation instead of full SharePoint Server 2010. </p>
<p>You can find the scripts on my SkyDrive – link at the bottom of the post.</p>
<p>To get them to work you will need to open them and edit the line &#8211; </p>
<p><strong>&#8216;MSSQL$SHAREPOINT&#8217;,&quot;SQLWriter&quot;,&#8217;SQLAgent$SHAREPOINT&#8217; | ForEach-Object</strong></p>
<p>You need to change the name of the SQL Service (in my case MSSQL$SHAREPOINT) to the name matching yours. This name will depend on what your SQL instance is called, if you install SharePoint ‘standalone’ then it will most likely be the same as mine.</p>
<p>Run the scripts in the following order &#8211; </p>
<p>1. ‘Manual.ps1’ – Sets services to manual startup (Only need to run this once)</p>
<p>2. ‘Start.ps1’ – Starts SQL &amp; SharePoint Foundation services</p>
<p>3. ‘Stop.ps1’ – Stops SQL &amp; SharePoint Foundation services</p>
<p>Hope this helps! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&#160;</p>
<p><font size="2"><strong>Link: </strong></font><a title="http://cid-0b297b44873297a0.skydrive.live.com/browse.aspx/.Public/SharePoint%202010/Powershell%20Scripts" href="http://cid-0b297b44873297a0.skydrive.live.com/browse.aspx/.Public/SharePoint%202010/Powershell%20Scripts" target="_blank"><font size="2"><strong>SharePoint Foundation Powershell Scripts</strong></font></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/378/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=378&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/26/powershell-scripts-for-sharepoint-2010-services-stop-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>
	</item>
		<item>
		<title>Wordle for my Blog</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/23/wordle-for-my-blog/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/23/wordle-for-my-blog/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 16:31:08 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[General Chit Chat]]></category>
		<category><![CDATA[Wordle]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/23/wordle-for-my-blog/</guid>
		<description><![CDATA[I’ve seen quite a few people create one of these recently so I thought I would generate one for my blog and see how it comes out. Here the Wordle is in all its glory -

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=377&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I’ve seen quite a few people create one of these recently so I thought I would generate one for my blog and see how it comes out. Here the <a href="http://www.wordle.net" target="_blank">Wordle</a> is in all its glory -</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/blogwordle.png"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="SharePointCoding Wordle" border="0" alt="SharePointCoding Wordle" src="http://sharepointcoding.files.wordpress.com/2009/11/blogwordle_thumb.png?w=468&#038;h=442" width="468" height="442" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=377&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/23/wordle-for-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/blogwordle_thumb.png" medium="image">
			<media:title type="html">SharePointCoding Wordle</media:title>
		</media:content>
	</item>
		<item>
		<title>How to: Install SharePoint 2010 &#8216;Standalone&#8217; on Windows 7</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/23/how-to-install-sharepoint-2010-standalone-on-windows-7/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/23/how-to-install-sharepoint-2010-standalone-on-windows-7/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:15:16 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint Configuration]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010 Beta]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/23/how-to-install-sharepoint-2010-standalone-on-windows-7/</guid>
		<description><![CDATA[ Since getting my hands on the Beta 2 version of SharePoint 2010 and SharePoint foundation I&#8217;ve read countless guides and blog posts about how to install it on Windows 7.
The problem is finding one that gives you the correct install procedure and this often means trawling through the comments to see if it is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=373&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sharepointcoding.files.wordpress.com/2009/11/sharepoint2010slimlogo.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 5px 0 0;" title="SharePoint 2010 Logo" border="0" alt="SharePoint 2010 Logo" align="left" src="http://sharepointcoding.files.wordpress.com/2009/11/sharepoint2010slimlogo_thumb.gif?w=230&#038;h=53" width="230" height="53" /></a> Since getting my hands on the Beta 2 version of SharePoint 2010 and SharePoint foundation I&#8217;ve read countless guides and blog posts about how to install it on Windows 7.</p>
<p>The problem is finding one that gives you the correct install procedure and this often means trawling through the comments to see if it is a reliable source. Because of this I&#8217;ve decided to post my own tutorial of the steps I used to create a reliable and fully functional SharePoint 2010 environment on a single machine (client OS).</p>
<p>Keep in mind that this blog post only walks through installing SharePoint 2010 in ‘Standalone’ mode (aka default configuration). This does not give you as much flexibility nor does it replicate a server farm environment. But this does work well for small dev work or to simply play around with SharePoint 2010.</p>
<p><strong><font color="#ff0000">*RAM Requirements: Be aware that if you are planning to install SharePoint Server 2010 you will need a lot of RAM. The recommended minimum from Microsoft is 6GB. SharePoint 2010 will install on a machine with 4GB of RAM but this will not be enough for a development environment.*</font></strong></p>
<p>1. Install the Pre-Requisites for your operating system listed in the following MSDN guide -</p>
<p><a title="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx" href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx">http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx</a></p>
<p>2. Install the ‘WCF Hotfix’ (KB976462) for Windows 7/Server 2008 R2 which is available here &#8211; </p>
<p><a title="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=23806" href="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=23806">http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=23806</a></p>
<p>3. Extract the SharePoint installation (.exe) that you downloaded, you can do this by typing at the command line the following &#8211; </p>
<p><strong>c:\SharePoint\SharePoint2010.exe /extract:c:\Temp</strong></p>
<p>4. Next we need to edit an xml file and add an attribute that will allow you to install SharePoint on a workstation OS. If you try and run the setup without performing this step then it will display an error message that the OS is not supported.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_f86dc041d47a4154acc541fd4bf6c637enusoffice_14.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="SharePoint 2010 Setup Error" border="0" alt="SharePoint 2010 Setup Error" src="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_f86dc041d47a4154acc541fd4bf6c637enusoffice_14_thumb.gif?w=244&#038;h=130" width="244" height="130" /></a> </p>
<p>Open the ‘config.xml file located at ‘c:\Temp\files\Setup\config.xml’ (where Temp is the folder that contains your extracted files from above).</p>
<p>Add the following line inside the &lt;configuration&gt; tag:</p>
<p><strong>&lt;Setting Id=&quot;AllowWindowsClientInstall&quot; Value=&quot;True&quot;/&gt;</strong></p>
<p>Save and close the file.</p>
<p>5. Run the SharePoint 2010 setup (setup.exe).</p>
<p>6. When asked what type of installation you wish to perform select ‘Standalone’. This will install an instance of SQL Express and the default configuration. This will allow you to use local windows accounts.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_2720bd18b57048318fb02286e49d4be6enusoffice_14.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="SharePoint 2010 Installation Type" border="0" alt="SharePoint 2010 Installation Type" src="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_2720bd18b57048318fb02286e49d4be6enusoffice_14_thumb.gif?w=241&#038;h=196" width="241" height="196" /></a></p>
<p>&#160;<a href="http://sharepointcoding.files.wordpress.com/2009/11/image6.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb6.png?w=239&#038;h=196" width="239" height="196" /></a></p>
<p>7. Once the wizard has completed it will prompt you to run the ‘SharePoint Products Configuration Wizard’ (aka Psconfig). <strong>Do Not</strong> run the wizard and exit.</p>
<p>8. Install SQL Server 2008 cumulative update package 2 &#8211; </p>
<p><a title="http://support.microsoft.com/kb/970315" href="http://support.microsoft.com/kb/970315">http://support.microsoft.com/kb/970315</a></p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image7.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb7.png?w=244&#038;h=186" width="244" height="186" /></a> </p>
<p>9. When the above update has finished installing, execute the ‘SharePoint Products Configuration Wizard’. Ignore the warning telling you that installing SharePoint 2010 on Windows 7 or Vista is unsupported. You also need to click ‘OK’ to the message explaining that IIS will be reset as part of the installation.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image8.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb8.png?w=244&#038;h=211" width="244" height="211" /></a> </p>
</p>
</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image9.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb9.png?w=244&#038;h=210" width="244" height="210" /></a> </p>
<p>The wizard will now configure SharePoint 2010 so you can sit back and relax! (Hopefully this step goes smoothly and you don’t see any errors).</p>
<p>10. When the wizard is complete, click ‘Finish’. An IE window should now popup and display a SharePoint page asking you to select the template you would like for your first SharePoint 2010 site collection.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image10.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="SharePoint 2010 Central Administration" border="0" alt="SharePoint 2010 Central Administration" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb10.png?w=511&#038;h=187" width="511" height="187" /></a> </p>
<p>11. Success – the installation is now complete and you have a full working copy of SharePoint 2010 Beta! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=373&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/23/how-to-install-sharepoint-2010-standalone-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/sharepoint2010slimlogo_thumb.gif" medium="image">
			<media:title type="html">SharePoint 2010 Logo</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_f86dc041d47a4154acc541fd4bf6c637enusoffice_14_thumb.gif" medium="image">
			<media:title type="html">SharePoint 2010 Setup Error</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/ee554869_2720bd18b57048318fb02286e49d4be6enusoffice_14_thumb.gif" medium="image">
			<media:title type="html">SharePoint 2010 Installation Type</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb10.png" medium="image">
			<media:title type="html">SharePoint 2010 Central Administration</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint 2010 &amp; FIMSyncronizationService Problems</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/19/sharepoint-2010-fimsyncronizationservice-problems/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/19/sharepoint-2010-fimsyncronizationservice-problems/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 11:54:50 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Admin]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/19/sharepoint-2010-fimsyncronizationservice-problems/</guid>
		<description><![CDATA[**Updated 23/11/2009
Jeremy Thake (@jthake) advised me that this service is required for the ‘User Profiles Synchronization Service’ in SP2010 and that if you disable it then this won’t work. Decide whether you are going to need this feature before you disable this. I am not sure why it slows down the OS so much when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=355&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>**Updated 23/11/2009</strong></p>
<p>Jeremy Thake (@jthake) advised me that this service is required for the ‘User Profiles Synchronization Service’ in SP2010 and that if you disable it then this won’t work. Decide whether you are going to need this feature before you disable this. I am not sure why it slows down the OS so much when booting up.</p>
<p>____________________________________________________________________________________</p>
<p>I recently installed the betas of SharePoint Foundation 2010&#160; on top of Windows 7 and full SharePoint Server 2010 on to Server 2008 R2. One problem I found is that after you have rebooted the machine a couple of times it becomes very slow to startup.</p>
<p>At first I thought it was just because I was running SP2010 on a machine with only 4gb of ram and that was just the nature of the beast. When I opened Task Manager though it told a different story – the service ‘<strong>FIMSyncronizationService (Forefront Identity Manager Synchronization Service)’ </strong>was still trying to start and slowing the whole machine down. Once this service was stopped the machine continued booting into windows.</p>
<p>The service never seemed to start properly and I am assuming this is only needed if you want to use the full Forefront product with SharePoint.</p>
<p>I have now disabled this service using ‘Services.msc’ and SharePoint 2010 is still working fine. I would recommend anyone with the same issue who is not using Forefront to stop and disable this service from loading.</p>
<p>Hope this helps <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/355/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=355&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/19/sharepoint-2010-fimsyncronizationservice-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint 2010 Beta now available!</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/16/sharepoint-2010-public-beta-now-available/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/16/sharepoint-2010-public-beta-now-available/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 20:01:10 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Chat]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MSDN]]></category>
		<category><![CDATA[SharePoint 2010 Beta]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/16/sharepoint-2010-public-beta-now-available/</guid>
		<description><![CDATA[To those who don’t already know, the beta of SharePoint 2010 is now available to MSDN/Technet subscribers  
Here is the direct link to MSDN &#8211; 
https://msdn.microsoft.com/en-us/subscriptions/securedownloads/default.aspx?PV=42%3a393%3aEXE%3aen%3ax64
You can download both Office SharePoint Server 2010 (Full product) and SharePoint Foundation Server (Used to be WSS).
Have fun downloading!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=353&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To those who don’t already know, the beta of SharePoint 2010 is now available to MSDN/Technet subscribers <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Here is the direct link to MSDN &#8211; </p>
<p><a title="https://msdn.microsoft.com/en-us/subscriptions/securedownloads/default.aspx?PV=42%3a393%3aEXE%3aen%3ax64" href="https://msdn.microsoft.com/en-us/subscriptions/securedownloads/default.aspx?PV=42%3a393%3aEXE%3aen%3ax64">https://msdn.microsoft.com/en-us/subscriptions/securedownloads/default.aspx?PV=42%3a393%3aEXE%3aen%3ax64</a></p>
<p>You can download both Office SharePoint Server 2010 (Full product) and SharePoint Foundation Server (Used to be WSS).</p>
<p>Have fun downloading!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/353/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=353&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/16/sharepoint-2010-public-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting started with the Bing Maps Silverlight SDK</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/16/getting-started-with-the-bing-maps-silverlight-sdk/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/16/getting-started-with-the-bing-maps-silverlight-sdk/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:48:38 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[.NET Development]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Silverlight 3.0]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/16/getting-started-with-the-bing-maps-silverlight-sdk/</guid>
		<description><![CDATA[I got the chance this morning to have a look at the newly released Bing Maps Silverlight SDK. The bing maps SDK allows you to add a map to your silverlight application and enhance it by adding pushpins, images, videos, shapes and scalable elements etc. 
I’m impressed at how easy it is to get a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=352&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I got the chance this morning to have a look at the newly released Bing Maps Silverlight SDK. The bing maps SDK allows you to add a map to your silverlight application and enhance it by adding pushpins, images, videos, shapes and scalable elements etc. </p>
<p>I’m impressed at how easy it is to get a bing map displaying in your silverlight application and start customising it.</p>
<p>I decided to create this getting started guide to help you create a simple silverlight application displaying a bing map.</p>
<p>When you have completed the guide below you should have a map similar to the one below.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image5.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 5px 0 0;" title="image" border="0" alt="image" align="left" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb5.png?w=204&#038;h=354" width="204" height="354" /></a> </p>
<p>1. Download and install the Bing Maps Silverlight Control SDK from here &#8211; </p>
<p><a title="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=beb29d27-6f0c-494f-b028-1e0e3187e830" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=beb29d27-6f0c-494f-b028-1e0e3187e830">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=beb29d27-6f0c-494f-b028-1e0e3187e830</a></p>
<p>2. Create a new ‘Silverlight Application’ project in Visual Studio 2008/2010 whichever you prefer. When the box pops up to asking whether or not you want VS to host the silverlight app in a new web site – <strong>make sure its ticked</strong>.</p>
<p>3. Add a reference to the dll’s</p>
<p><strong>Microsoft.Maps.MapControl.dll</strong>&#160; </p>
<p><strong>Microsoft.Maps.MapControl.Common.dll</strong></p>
<p>you can find these dll’s in a subfolder of the installation directory called ‘Libraries’.</p>
<p>4. Create an account at the ‘Bing Maps Account Center’ and create a new application key (you will need this key to be able to use the bing map control) &#8211; </p>
<p><a title="https://www.bingmapsportal.com/" href="https://www.bingmapsportal.com/">https://www.bingmapsportal.com/</a></p>
<p>4. Open the MainPage.xaml file of your project (not the web project) and a new xml namespace:</p>
<p><font color="#0000ff">xmlns:m=&quot;clr namespace:Microsoft.Maps.MapControl;assembly=Microsoft.Maps.MapControl&quot;</font></p>
<p>5. Next add the following code inside the Grid control (make sure you paste your bing maps application key into the CredentialsProvider property &#8211; </p>
<p><font color="#0000ff">&lt;m:Map      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Height=&quot;300&quot;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Width=&quot;350&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; x:Name=&quot;testMap&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CredentialsProvider=&quot;<em>Your application key goes here</em>&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Background=&quot;White&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Mode=&quot;Road&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Center=&quot;19.642588,50.273438&quot;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ZoomLevel=&quot;0&quot;&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;m:Pushpin Location=&quot;52.97421339369046,-1.246250867843628&quot;/&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;m:Pushpin Location=&quot;-27.469442,153.030136&quot;/&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/m:Map&gt;</font></p>
<p>6. Refresh the designer in visual studio by clicking the link and then build your project.</p>
<p>7. Hey Presto! – you should now be seeing a bing map just like the one above showing the locations of the <a href="http://www.id-live.com/" target="_blank">ID</a> offices.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=352&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/16/getting-started-with-the-bing-maps-silverlight-sdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting started with Silverlight 3 and SharePoint</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 10:58:32 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint Development]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/</guid>
		<description><![CDATA[ Recently I have been focusing on creating some Silverlight charts using the ‘Silverlight Toolkit’ from Codeplex (see the link in the instructions below).
Once I had created my first chart I wondered how to get it to display in SharePoint. It seems there are a number of options for displaying a Silverlight application (xap) in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=348&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sharepointcoding.files.wordpress.com/2009/11/silverlightlogo_1.jpg"><img style="display:inline;margin-left:0;margin-right:0;border:0;" title="Silverlight Logo" src="http://sharepointcoding.files.wordpress.com/2009/11/silverlightlogo_1_thumb.jpg?w=99&#038;h=95" border="0" alt="Silverlight Logo" width="99" height="95" align="left" /></a> Recently I have been focusing on creating some Silverlight charts using the ‘Silverlight Toolkit’ from Codeplex (see the link in the instructions below).</p>
<p>Once I had created my first chart I wondered how to get it to display in SharePoint. It seems there are a number of options for displaying a Silverlight application (xap) in a SharePoint web part.</p>
<p>I found lots of blog posts that described separate bits of configuring I needed to do to get Silverlight working happily in SharePoint. I&#8217;ve decided to create a getting started list of what you need to do to get Silverlight installed and how to display your xap file with the built in &#8216;Content Editor Web Part’. I have linked to other blog posts where necessary.</p>
<p><strong><span style="text-decoration:underline;">Configuration</span></strong></p>
<p>1. Download and install the Silverlight 3 runtime from silverlight.net -</p>
<p><a title="http://silverlight.net/getstarted/silverlight3/" href="http://silverlight.net/getstarted/silverlight3/">http://silverlight.net/getstarted/silverlight3/</a></p>
<p>2. Download and install the Silverlight 3 SDK and tools for Visual Studio from the silverlight site - </p>
<p><a title="http://silverlight.net/getstarted/" href="http://silverlight.net/getstarted/">http://silverlight.net/getstarted/</a></p>
<p>3. &lt;Optional&gt; Download and install the Silverlight Toolkit (If you want to use some of these cool and free Silverlight controls) -</p>
<p><a title="http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514" href="http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514">http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514</a></p>
<p>4. If you are running Windows Server 2008 you can skip this step as the MIME types should have been automatically added to IIS7 for you. For server 2003 users you will need to add the Silverlight MIME types to IIS6, follow the instructions here -</p>
<p><a title="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx" href="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx">http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx</a></p>
<p>5. This step involves configuring the web.config files for the SharePoint sites that you wish to run your Silverlight applications in. Follow the instructions on this blog post -</p>
<p><a title="http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx" href="http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx">http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx</a></p>
<p>6. Ensure that the assembly <strong>System.Web.Silverlight </strong>is in the global assembly cache. If not then you can find it at the following location -</p>
<p>C:\Program Files\Microsoft SDKs\Silverlight\v3.0\Libraries\Server</p>
<p>7. Configuration complete! – now read on to the deployment section</p>
<p><strong><span style="text-decoration:underline;">Deployment</span></strong></p>
<p>To get your silverlight xap displaying on a SharePoint page follow the steps below. In terms of where to store your .xap file there are a number of places for you to choose. Some people recommend storing it in a folder called ‘ClientBin’ in the IIS virtual directory of the SharePoint web application but I was not able to get this working. I opted for the simplest method which was to store the file in a document library.</p>
<p>1. Upload your Silverlight xap file to a document library</p>
<p>2. Switch to edit mode for your SharePoint page and add a Content Editor Web Part</p>
<p>3. Insert the following HTML code - </p>
<p><span style="color:#0000ff;">&lt;!&#8211;&lt;div width=&#8221;600px&#8221; height=&#8221;100px&#8221; id=&#8221;silverlightControlHost&#8221;&gt;<br />
&lt;object data=&#8221;data:application/x-silverlight&#8221;, type=&#8221;application/x-silverlight-2&#8243; width=&#8221;450&#8243; height=&#8221;450&#8243;&gt;<br />
&lt;param name=&#8221;source&#8221; value=&#8221;</span><a href="http://yoursite/sites/charting/XAPs/SimpleSilverlightChart.xap&quot;/"><span style="color:#0000ff;">http://yoursite/sites/charting/XAPs/SimpleSilverlightChart.xap&#8221;/</span></a><span style="color:#0000ff;">&gt;<br />
&lt;param name=&#8221;onerror&#8221; value=&#8221;onSilverlightError&#8221; /&gt;<br />
&lt;param name=&#8221;background&#8221; value=&#8221;white&#8221; /&gt;<br />
&lt;a href=&#8221;</span><a href="http://go.microsoft.com/fwlink/?LinkID=108182&quot;"><span style="color:#0000ff;">http://go.microsoft.com/fwlink/?LinkID=108182&#8243;</span></a><span style="color:#0000ff;"> style=&#8221;text-decoration: none;&#8221;&gt;<br />
&lt;img src=&#8221;</span><a href="http://go.microsoft.com/fwlink?LinkID=108101&quot;"><span style="color:#0000ff;">http://go.microsoft.com/fwlink?LinkID=108101&#8243;</span></a><span style="color:#0000ff;"> alt=&#8221;Get Microsoft Silverlight&#8221; style=&#8221;border-style: none&#8221;/&gt;<br />
&lt;/a&gt;<br />
&lt;/object&gt;<br />
&lt;iframe style=&#8217;visibility:hidden;height:0;width:0;border:0px&#8217;&gt;&lt;/iframe&gt;<br />
&lt;/div&gt; –&gt;</span></p>
<p>Remember to remove the comments from the above code and replace the param value=”” with the url to your document library and xap file.</p>
<p>4. Click apply and save the changes to your content editor web part</p>
<p>5. If all went well you should be seeing your Silverlight application displaying correctly!</p>
<p>Note: You may need to play around with the width and height of both the &lt;div&gt; and &lt;object&gt; tags to size them correctly for your Silverlight application.</p>
<p>Good Luck! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=348&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/silverlightlogo_1_thumb.jpg" medium="image">
			<media:title type="html">Silverlight Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>My Top 5 IE8 Accelerators</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/06/my-top-5-ie8-accelerators/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/06/my-top-5-ie8-accelerators/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 12:36:57 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[Accelerators]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/06/my-top-5-ie8-accelerators/</guid>
		<description><![CDATA[If you haven’t heard of them ‘Accelerators’ are a new feature in IE8 which are designed to make your browsing tasks quicker and easier.
Accelerators allow you to perform an action by simply highlighting text on a webpage or just right clicking on a page and selecting your chosen accelerator.
Below are my top 5 IE8 accelerators:
1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=345&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you haven’t heard of them ‘Accelerators’ are a new feature in IE8 which are designed to make your browsing tasks quicker and easier.</p>
<p>Accelerators allow you to perform an action by simply highlighting text on a webpage or just right clicking on a page and selecting your chosen accelerator.</p>
<p>Below are my top 5 IE8 accelerators:</p>
<p>1. ‘<strong>Google Reader Accelerator’</strong> </p>
<p>Simply right click on the RSS feed page and click the accelerator to subscribe to it with your Google reader account.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb.png?w=199&#038;h=24" width="199" height="24" /></a></p>
<p><a title="http://www.ieaddons.com/en/details/bookmarks/Subscribe_with_Google_Reader/" href="http://www.ieaddons.com/en/details/bookmarks/Subscribe_with_Google_Reader/">http://www.ieaddons.com/en/details/bookmarks/Subscribe_with_Google_Reader/</a></p>
<p>2. <strong>‘WordPress Accelerator’</strong></p>
<p>Select any text on a webpage and select the accelerator to start a new blog post containing the selected text.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image1.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb1.png?w=162&#038;h=29" width="162" height="29" /></a></p>
<p><a href="http://www.wordpress.com">http://www.wordpress.com</a></p>
<p>(Login to your dashboard and you should find it available for download) </p>
</p>
</p>
<p>3. ‘<strong>Twitter Accelerator’</strong></p>
<p>Select some text on a page and select the twitter accelerator to send the text as a tweet from your twitter account.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image2.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb2.png?w=122&#038;h=24" width="122" height="24" /></a> </p>
<p><a title="http://openbrolly.com/2008/08/31/ie8-accelerator-for-twitter/" href="http://openbrolly.com/2008/08/31/ie8-accelerator-for-twitter/">http://openbrolly.com/2008/08/31/ie8-accelerator-for-twitter/</a></p>
<p>4. ‘<strong>Google Maps Accelerator’</strong></p>
<p>Select any bit of text (Postcode, Address etc) and select the google maps accelerator to open the location in google maps.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image3.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb3.png?w=160&#038;h=28" width="160" height="28" /></a> </p>
<p><a title="http://ie.microsoft.com/activities/en-en/Default.aspx" href="http://ie.microsoft.com/activities/en-en/Default.aspx">http://ie.microsoft.com/activities/en-en/Default.aspx</a></p>
<p>5. ‘<strong>Google Mail Accelerator’</strong></p>
<p>Select some text and select the google mail accelerator to create a new email message containing the selected text.</p>
<p><a href="http://sharepointcoding.files.wordpress.com/2009/11/image4.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb4.png?w=125&#038;h=25" width="125" height="25" /></a>&#160;</p>
<p><a title="http://ie.microsoft.com/activities/en-en/Default.aspx" href="http://ie.microsoft.com/activities/en-en/Default.aspx">http://ie.microsoft.com/activities/en-en/Default.aspx</a></p>
<p>Hope you find these accelerators helpful and as useful as I do!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=345&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/06/my-top-5-ie8-accelerators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://sharepointcoding.files.wordpress.com/2009/11/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Chart Controls for .NET &#8211; Error executing child request for ChartImg.axd</title>
		<link>http://sharepointcoding.wordpress.com/2009/11/03/microsoft-chart-controls-for-net-error-executing-child-request-for-chartimg-axd/</link>
		<comments>http://sharepointcoding.wordpress.com/2009/11/03/microsoft-chart-controls-for-net-error-executing-child-request-for-chartimg-axd/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 15:56:44 +0000</pubDate>
		<dc:creator>alex350r</dc:creator>
				<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 3.5]]></category>
		<category><![CDATA[.NET 3.5 SP1]]></category>
		<category><![CDATA[Chart Controls]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://sharepointcoding.wordpress.com/2009/11/03/microsoft-chart-controls-for-net-error-executing-child-request-for-chartimg-axd/</guid>
		<description><![CDATA[I ran into this error today when attempting to show a web part on a SharePoint site that utilises the .NET 3.5 Chart Controls from MS (See link at the bottom of the post).
When the page opened it bombed out with the above error, some research found the following question on stackoverflow &#8211; 
http://stackoverflow.com/questions/302820/net-3-5-chart-controls-exception-error-executing-child-request-for-chartimg-axd
To fix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=333&subd=sharepointcoding&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I ran into this error today when attempting to show a web part on a SharePoint site that utilises the .NET 3.5 Chart Controls from MS (See link at the bottom of the post).</p>
<p>When the page opened it bombed out with the above error, some research found the following question on stackoverflow &#8211; </p>
<p><a title="http://stackoverflow.com/questions/302820/net-3-5-chart-controls-exception-error-executing-child-request-for-chartimg-axd" href="http://stackoverflow.com/questions/302820/net-3-5-chart-controls-exception-error-executing-child-request-for-chartimg-axd">http://stackoverflow.com/questions/302820/net-3-5-chart-controls-exception-error-executing-child-request-for-chartimg-axd</a></p>
<p>To fix this error you need to add the following entry into the &lt;HttpHandlers&gt; section of the web.config file:</p>
<p align="left"><em>&lt;add path=&quot;ChartImg.axd&quot; verb=&quot;GET,HEAD,POST&quot; type=&quot;System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&quot; validate=&quot;false&quot; /&gt;</em></p>
<p align="left">When I refreshed the page, I received another error – this time it was:</p>
<p align="left"><em><strong>Invalid temp directory in chart handler configuration</strong></em></p>
<p align="left">If you too get this error then you need to make sure you have the following line in the &lt;appSettings&gt; section of the web.config:</p>
<p align="left"><em>&lt;add key=&quot;ChartImageHandler&quot; value=&quot;storage=file;timeout=20;dir=c:\TempImageFiles\;&quot; /&gt;</em></p>
<p align="left">Also make sure that the above directory ‘TempImageFiles’ exists on the C: drive or you can change this to any other directory that you like.</p>
<p align="left">Hope this helps! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align="left"><strong>Download link for MS Chart Controls:</strong></p>
<p align="left"><a title="http://www.microsoft.com/downloads/details.aspx?FamilyId=130F7986-BF49-4FE5-9CA8-910AE6EA442C&amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=130F7986-BF49-4FE5-9CA8-910AE6EA442C&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=130F7986-BF49-4FE5-9CA8-910AE6EA442C&amp;displaylang=en</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepointcoding.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepointcoding.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepointcoding.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepointcoding.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepointcoding.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepointcoding.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepointcoding.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepointcoding.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepointcoding.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepointcoding.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepointcoding.wordpress.com&blog=4487566&post=333&subd=sharepointcoding&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sharepointcoding.wordpress.com/2009/11/03/microsoft-chart-controls-for-net-error-executing-child-request-for-chartimg-axd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7cddfde5aeb8cc2a5676606d6bf05265?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alex350r</media:title>
		</media:content>
	</item>
	</channel>
</rss>