<?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/"
	>

<channel>
	<title>Dev Team Assemble</title>
	<atom:link href="http://www.calvinirwin.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calvinirwin.net</link>
	<description>Evil beware!</description>
	<lastBuildDate>Wed, 28 Jul 2010 12:55:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint, Webservices and URL Rewrite&#8230;</title>
		<link>http://www.calvinirwin.net/2010/07/28/sharepoint-webservices-and-url-rewrite/</link>
		<comments>http://www.calvinirwin.net/2010/07/28/sharepoint-webservices-and-url-rewrite/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 12:55:01 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[url rewriter]]></category>
		<category><![CDATA[WebServices]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=255</guid>
		<description><![CDATA[So I was having a strange problem in SharePoint the other day trying to run a webservice from a client script.  Every time I called the service (in this case and .asmx in the layouts dir) it was doing nothing...no communication at all with the service.  What made this particularly strange is that this exact [...]]]></description>
			<content:encoded><![CDATA[<p>So I was having a strange problem in SharePoint the other day trying to run a webservice from a client script.  Every time I called the service (in this case and .asmx in the layouts dir) it was doing nothing...no communication at all with the service.  What made this particularly strange is that this exact same setup was working fine for everyone else in my team...figures.</p>
<p>When I ran the web methods from the service page itself (which loaded just fine) I got the following error :<a href="/ThreadNavigation.aspx?PostID=1278431&amp;NavType=Previous"><span> </span></a> <strong>Request format is unrecognized for URL unexpectedly ending in  '/[webmethod_name]'.</strong> Didn't make sense...I checked my web configuration and compared it against the other people in my team and all was well.  I tried following Microsoft's recommendation of adding the following snippet to the system.web section of the config file.</p>
<p>&lt;<span>webServices</span>&gt;<br />
&lt;<span>protocols</span>&gt;<br />
&lt;<span>add</span><span> name=</span><span>"HttpGet"</span>/&gt;<br />
&lt;<span>add</span><span> name=</span><span>"HttpPost"</span>/&gt;<br />
&lt;/<span>protocols</span>&gt;<br />
&lt;/<span>webServices</span>&gt;</p>
<p>All the above did was give me a 500 error.</p>
<p>After spending waaaaaaaaay to much time on the problem...a colleague of mine and I finally discovered that it was due to the Lower case rewrite inbound rule (converts the entire address to lower case).  Apparently webmethod names are case sensitive in the address bar (this was not a SharePoint problem)...the documentation is here on msdn:  <a href="http://msdn.microsoft.com/en-us/library/0c515353(VS.71).aspx">http://msdn.microsoft.com/en-us/library/0c515353(VS.71).aspx </a></p>
<p>So turning off the rule and everything started to work again.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a>, <a class='technorati-link' href='http://technorati.com/tag/url+rewriter' rel='tag' target='_self'>url rewriter</a>, <a class='technorati-link' href='http://technorati.com/tag/WebServices' rel='tag' target='_self'>WebServices</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2010/07/28/sharepoint-webservices-and-url-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Post on ASP.NET Caching</title>
		<link>http://www.calvinirwin.net/2010/04/14/great-post-on-asp-net-caching/</link>
		<comments>http://www.calvinirwin.net/2010/04/14/great-post-on-asp-net-caching/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 13:46:12 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[windows 2008 r2]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=250</guid>
		<description><![CDATA[I came across a great post today that talks about ASP.NET caching (applies to SharePoint) and what to look for.  Thanks to Gunnar Peipman for the great insight.
http://weblogs.asp.net/gunnarpeipman/archive/2010/04/02/measuring-asp-net-and-sharepoint-output-cache.aspx
Basically you need to setup the following performance counters in windows:

Total number of objects added
Total object discards
Cache hit count
Cache hit ratio




Technorati Tags: ASP.NET, IIS, Windows, windows 2008 r2


]]></description>
			<content:encoded><![CDATA[<p>I came across a great post today that talks about ASP.NET caching (applies to SharePoint) and what to look for.  Thanks to Gunnar Peipman for the great insight.</p>
<p><a href="http://weblogs.asp.net/gunnarpeipman/archive/2010/04/02/measuring-asp-net-and-sharepoint-output-cache.aspx">http://weblogs.asp.net/gunnarpeipman/archive/2010/04/02/measuring-asp-net-and-sharepoint-output-cache.aspx</a></p>
<p>Basically you need to setup the following performance counters in windows:</p>
<ul>
<li>Total number of objects added</li>
<li>Total object discards</li>
<li>Cache hit count</li>
<li>Cache hit ratio</li>
</ul>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/ASP.NET' rel='tag' target='_self'>ASP.NET</a>, <a class='technorati-link' href='http://technorati.com/tag/IIS' rel='tag' target='_self'>IIS</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a>, <a class='technorati-link' href='http://technorati.com/tag/windows+2008+r2' rel='tag' target='_self'>windows 2008 r2</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2010/04/14/great-post-on-asp-net-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Web Part Maintenance Mode</title>
		<link>http://www.calvinirwin.net/2010/02/02/sharepoint-web-part-maintenance-mode/</link>
		<comments>http://www.calvinirwin.net/2010/02/02/sharepoint-web-part-maintenance-mode/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:48:17 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[webparts sharepoint development]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/2010/02/02/sharepoint-web-part-maintenance-mode/</guid>
		<description><![CDATA[Here is something I always forget....when a page fails to load because of a web part that has gone awry you can enter the maintenance mode by adding the ?contents=1 to the end of the address.
Simple...just the way I like it!



Technorati Tags: webparts sharepoint development


]]></description>
			<content:encoded><![CDATA[<p>Here is something I always forget....when a page fails to load because of a web part that has gone awry you can enter the maintenance mode by adding the ?contents=1 to the end of the address.</p>
<p>Simple...just the way I like it!</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/webparts+sharepoint+development' rel='tag' target='_self'>webparts sharepoint development</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2010/02/02/sharepoint-web-part-maintenance-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MS Office Communicator on Ubuntu &#8211; Linux</title>
		<link>http://www.calvinirwin.net/2010/01/07/installing-ms-office-communicator-on-ubuntu-linux/</link>
		<comments>http://www.calvinirwin.net/2010/01/07/installing-ms-office-communicator-on-ubuntu-linux/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 18:49:41 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft Office Communicator]]></category>
		<category><![CDATA[pidgin]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=246</guid>
		<description><![CDATA[One of the guys I work with told me about running the Microsoft Office Communicator in Linux.  Its actually quite easy to install.  Simply go to The Sipe Project website on sourceforge and follow the instructions.  For me it was dead easy.

Add a couple of sources to the /etc/apt/sources.list file ( deb http://ppa.launchpad.net/aavelar/ppa/ubuntu jaunty main [...]]]></description>
			<content:encoded><![CDATA[<p>One of the guys I work with told me about running the Microsoft Office Communicator in Linux.  Its actually quite easy to install.  Simply go to <a href="http://sipe.sourceforge.net">The Sipe Project</a> website on sourceforge and follow the instructions.  For me it was dead easy.</p>
<ol>
<li>Add a couple of sources to the /etc/apt/sources.list file ( <span style="color: #800000;">deb http://ppa.launchpad.net/aavelar/ppa/ubuntu jaunty main</span> AND <span style="color: #800000;">deb-src http://ppa.launchpad.net/aavelar/ppa/ubuntu jaunty main</span>)</li>
<li>Run an apt-get command to install it. sudo apt-get install pidgin-sipe</li>
</ol>
<p>Once the install is complete you can now add Microsoft LCS/OCS as an account type in the list.  Simply fill in your creds and you are off to the races.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Linux' rel='tag' target='_self'>Linux</a>, <a class='technorati-link' href='http://technorati.com/tag/Microsoft+Office+Communicator' rel='tag' target='_self'>Microsoft Office Communicator</a>, <a class='technorati-link' href='http://technorati.com/tag/pidgin' rel='tag' target='_self'>pidgin</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2010/01/07/installing-ms-office-communicator-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SELECT TOP n ROWS &#8211; DB2</title>
		<link>http://www.calvinirwin.net/2009/12/15/select-top-n-rows-db2/</link>
		<comments>http://www.calvinirwin.net/2009/12/15/select-top-n-rows-db2/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:53:17 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[DB2]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=243</guid>
		<description><![CDATA[One thing I always seem to forget when moving from one db system to the other (not using DB2 all that often) is how to select the TOP n rows from a query.
In MS SQL Server this is expressed as SELECT TOP n * FROM [table] ...
the equivilent in DB2 is SELECT * FROM [table] FETCH [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I always seem to forget when moving from one db system to the other (not using DB2 all that often) is how to select the TOP n rows from a query.</p>
<p>In MS SQL Server this is expressed as SELECT TOP n * FROM [table] ...</p>
<p>the equivilent in DB2 is SELECT * FROM [table] FETCH FIRST n ROWS ONLY</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/DB2' rel='tag' target='_self'>DB2</a>, <a class='technorati-link' href='http://technorati.com/tag/SQL+Server' rel='tag' target='_self'>SQL Server</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/12/15/select-top-n-rows-db2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2007 on Windows 2008 R2 x64</title>
		<link>http://www.calvinirwin.net/2009/12/01/sharepoint-2007-on-windows-2008-r2-x64/</link>
		<comments>http://www.calvinirwin.net/2009/12/01/sharepoint-2007-on-windows-2008-r2-x64/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:11:00 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=239</guid>
		<description><![CDATA[I was trying to install install SharePoint 2007 onto Windows 2008 r2 and was getting a strange error referencing KB article 962935. Funny enough this article is not live yet so it left me a little unhappy. Apprarently Microsoft does not support the distributed SP1 installation package of SharePoint for this version of the OS. [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to install install SharePoint 2007 onto Windows 2008 r2 and was getting a strange error referencing KB article 962935. Funny enough this article is not live yet so it left me a little unhappy. Apprarently Microsoft does not support the distributed SP1 installation package of SharePoint for this version of the OS. Turns out Jei Li posting on his msdn blog detailing how to go about creating a slipstreamed installation for SP2 on this server <a href="http://blogs.msdn.com/sharepoint/archive/2009/10/02/install-sharepoint-server-2007-on-windows-server-2008-r2.aspx">Click here for the article</a>. Basically the steps are (pretty much word for word from Jei Li's blog):</p>
<ul>
<li>Install .Net Framework 3.5 SP1 in the features applet</li>
<li>Copy the installtion media contents to a folder on the computer (c:\install)</li>
<li>Download the<a href="http://www.microsoft.com/downloads/details.aspx?familyid=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;displaylang=en"> WSS x64 SP package </a>and the <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=b7816d90-5fc6-4347-89b0-a80deb27a082">MOSS 2007 SP2 x64 </a></li>
<li>Delete everything inside <strong>Updates</strong> folder in the install folder you setup.</li>
<li>Open a command prompt,  change directory to the folder you put the downloaded patches, and run the following two commands: 
<ul>
<li>wssv3sp2-kb953338-x64-fullfile-en-us.exe /extract:<strong>[Path to installation bits]</strong>\Updates /quiet</li>
<li>officeserver2007sp2-kb953334-x64-fullfile-en-us.exe /extract:<strong> [Path to installation bits]</strong>\Updates /quiet</li>
</ul>
</li>
<li>Delete the <strong>wsssetup.dll</strong> filein the updates dir. This is a very important step so please don’t miss it.</li>
<li>If you also need the Cumulative Updates to be applied when install SharePoint, download the latest Windows SharePoint Services 3.0 and SharePoint Server 2007 Cumulative Update packages and extract them into <strong>Updates</strong> folder like step 4.</li>
<li>Your slipstream build of SharePoint Server 2007 is done!</li>
<li>Go and install it on your Windows Server 2008 R2 box, after the installation, the site version will show <strong>12.0.0.6421 </strong>or possibly a higher version.</li>
</ul>
<p>Please reference Jei Li's post for furthur instuctions.  I only posted all the steps here because things have a mysterious way of dissappearing or not appearing at all on Microsofts site.</p>
<p>After doing all of this everything seems to be fine...seems to be <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Links</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/cc261890.aspx">http://technet.microsoft.com/en-us/library/cc261890.aspx</a></li>
<li><a href="http://blogs.msdn.com/sharepoint/archive/2009/10/02/install-sharepoint-server-2007-on-windows-server-2008-r2.aspx">http://blogs.msdn.com/sharepoint/archive/2009/10/02/install-sharepoint-server-2007-on-windows-server-2008-r2.aspx</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=b7816d90-5fc6-4347-89b0-a80deb27a082">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=b7816d90-5fc6-4347-89b0-a80deb27a082</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;displaylang=en</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Configuration' rel='tag' target='_self'>Configuration</a>, <a class='technorati-link' href='http://technorati.com/tag/server' rel='tag' target='_self'>server</a>, <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag' target='_self'>Windows</a>, <a class='technorati-link' href='http://technorati.com/tag/windows+2008+r2' rel='tag' target='_self'>windows 2008 r2</a>, <a class='technorati-link' href='http://technorati.com/tag/x64' rel='tag' target='_self'>x64</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/12/01/sharepoint-2007-on-windows-2008-r2-x64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Collection Images and ImageFieldValue</title>
		<link>http://www.calvinirwin.net/2009/11/26/site-collection-images-and-imagefieldvalue/</link>
		<comments>http://www.calvinirwin.net/2009/11/26/site-collection-images-and-imagefieldvalue/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 03:33:46 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=237</guid>
		<description><![CDATA[One of the things I was working on today was trying to get an actual image from the library was that initially I was expecting to get a PublishingImage.  All the samples on MSDN and the ones strewn about the web refer to using the ImageFieldValue and getting it from a field in the SPListItem.  [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I was working on today was trying to get an actual image from the library was that initially I was expecting to get a PublishingImage.  All the samples on MSDN and the ones strewn about the web refer to using the ImageFieldValue and getting it from a field in the SPListItem.  Like outlined on <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.publishing.fields.imagefieldvalue.aspx">MSDN </a>:</p>
<pre class="csharp">  <span style="color: #008080; font-style: italic;">// Retrieve the current value from an SPListItem with a</span>
  <span style="color: #008080; font-style: italic;">// column of the ImageField type with the name imageFieldName</span>
  ImageFieldValue currentFieldValue =
        listItemWithImageField<span style="color: #000000;">&#91;</span>imageFieldName<span style="color: #000000;">&#93;</span> <span style="color: #0600FF;">as</span> ImageFieldValue;</pre>
<p>The problem is this only works for images that are in a list, like the PublishingRollupImage of a page that links to an image in the Site Collection Images library.  The actual images in the library are stored as documents (Referenced using SPFile) so in order utilize them I need to extract the information out and create an image tag for it...like so:</p>
<pre class="csharp">&nbsp;
     ImageFieldValue imageValue = <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> ImageFieldValue<span style="color: #000000;">&#40;</span>
          <span style="color: #FF0000;">string</span>.<span style="color: #0000FF;">Format</span><span style="color: #000000;">&#40;</span><span style="color: #808080;">&quot;&lt;img src=<span style="color: #008080; font-weight: bold;">\&quot;</span>{0}<span style="color: #008080; font-weight: bold;">\&quot;</span> alt=<span style="color: #008080; font-weight: bold;">\&quot;</span>{1}<span style="color: #008080; font-weight: bold;">\&quot;</span> /&gt;&quot;</span>,
          file.<span style="color: #0000FF;">Url</span>, file.<span style="color: #0000FF;">Title</span> == <span style="color: #0600FF;">null</span> ? <span style="color: #FF0000;">string</span>.<span style="color: #0000FF;">Empty</span> : file.<span style="color: #0000FF;">Title</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
&nbsp;</pre>
<p>Now that I had the ImageFieldValue it was easy to work with.  I could manipulate many aspects of the image using this object and then save it for rendering using ToString().  Funny thing is for my purposes (ImageGallery xml generation) I didn't even end up needing this code after all...frustrating but a good learning experience.  </p>
<p>Props to <a href="http://vlifeblog.com">Phanat Chan</a> as he did the initial development on this.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Development' rel='tag' target='_self'>Development</a>, <a class='technorati-link' href='http://technorati.com/tag/moss+2007' rel='tag' target='_self'>moss 2007</a>, <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/11/26/site-collection-images-and-imagefieldvalue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building an ESXi 4 Virtual Environment with SSH enabled</title>
		<link>http://www.calvinirwin.net/2009/11/19/building-an-esxi-4-virtual-environment-with-ssh-enabled/</link>
		<comments>http://www.calvinirwin.net/2009/11/19/building-an-esxi-4-virtual-environment-with-ssh-enabled/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:11:13 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[ESXi 4]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=230</guid>
		<description><![CDATA[So a little while ago I was playing around with building a virtual environment using Windows 2008 Hyper-V and while this was an interesting experience I found Microsoft's lack of any Linux distro support beyond the SUSE to be a bit of a pain.  That being said I wanted to increase the resources available on [...]]]></description>
			<content:encoded><![CDATA[<p>So a little while ago I was playing around with building a virtual environment using <a href="http://www.calvinirwin.net/2009/08/29/setting-up-a-windows-2008-hyper-v-server/">Windows 2008 Hyper-V</a> and while this was an interesting experience I found Microsoft's lack of any Linux distro support beyond the SUSE to be a bit of a pain.  That being said I wanted to increase the resources available on my Dell PowerEdge server and thought I would take this opportunity to rebuld it before I get started on building out a SharePoint 2010 beta 2 testing farm....whew, try saying that 10 times fast <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I downloaded and installed the new VMWare ESXi 4.  It looks like they are really streamlining this technology with the vSphere platform...blah blah blah means they are the same product with license key feature unlocks (from what I understand of it anyways).  Not surprisingly this was a lightning fast install.  I did have a couple of hiccups trying to figure out a) where to put my free license key in and b) getting SSH enabled.</p>
<p><strong>License Key </strong>- like most normal people I thought that after installing the vsphere client onto my desktop that there would be a little section in the help menu for adding license keys (like most software).  Turns out you need to click on the host, then the configuration tab and then the Licensed Features option under Software. (OK ... umm forgot to mention...click the edit button on the right hand side!!)</p>
<p><img class="alignnone size-full wp-image-235" title="esxfeatures" src="http://www.calvinirwin.net/wp-content/uploads/2009/11/esxfeatures.jpg" alt="esxfeatures" width="600" height="307" /></p>
<p><strong>SSH</strong> - enabling this took some digging.  Not much mind you because there are actual quite a few people out there writing about the same thing...  here are a couple that I found:</p>
<ul>
<li><a href="http://itsupportjournal.com/2008/06/30/remote-shell-access-in-esxi/">http://itsupportjournal.com/2008/06/30/remote-shell-access-in-esxi/</a></li>
<li><a href="http://blog.bruteforcetech.com/index.php/archives/126">http://blog.bruteforcetech.com/index.php/archives/126</a></li>
</ul>
<p>I don't want to rehash it but here are the steps (in case they take down their postings!)</p>
<ol>
<li>At the ESXi console ALT+F1 for new session at the console screen</li>
<li>enter the command "unsupported" and type your password</li>
<li>use vi to edit the inetd.conf file so type...vi /etc/inetd.conf</li>
<li>scroll to the areas where ssh is listed and remove the # sign (delete key works!)</li>
<li>type :wq to exit vi and save your changes</li>
<li>restart the server OR do the killing of the process number for inetd and using the correct switches (i just rebooted because I dont care that much <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>And after the machine comes back up you should be able to connect via <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">Putty </a>or whatever tool you are using no problem.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/ESXi+4' rel='tag' target='_self'>ESXi 4</a>, <a class='technorati-link' href='http://technorati.com/tag/virtualization' rel='tag' target='_self'>virtualization</a>, <a class='technorati-link' href='http://technorati.com/tag/VMWare' rel='tag' target='_self'>VMWare</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/11/19/building-an-esxi-4-virtual-environment-with-ssh-enabled/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Variations Failed: An error was encountered performing this operation. You may re-try the operation&#8230;</title>
		<link>http://www.calvinirwin.net/2009/10/30/variations-failed-an-error-was-encountered-performing-this-operation-you-may-re-try-the-operation/</link>
		<comments>http://www.calvinirwin.net/2009/10/30/variations-failed-an-error-was-encountered-performing-this-operation-you-may-re-try-the-operation/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 20:16:27 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[variations]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=225</guid>
		<description><![CDATA[So I got this error the other day when putting together a dev site collection usign varations:
An error was encountered performing this operation. You may re-try the operation, and you may need to clean up the half-created data first before re-trying. If the problem persists, please contact your system administrator
This was actually a fairly easy [...]]]></description>
			<content:encoded><![CDATA[<p>So I got this error the other day when putting together a dev site collection usign varations:</p>
<p><em>An error was encountered performing this operation. You may re-try the operation, and you may need to clean up the half-created data first before re-trying. If the problem persists, please contact your system administrator</em></p>
<p>This was actually a fairly easy fix for me.  I simply had to enable the publishing features in my site.  Which is funny...because they should have been on but I must have overlooked that.  <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Configuration' rel='tag' target='_self'>Configuration</a>, <a class='technorati-link' href='http://technorati.com/tag/error' rel='tag' target='_self'>error</a>, <a class='technorati-link' href='http://technorati.com/tag/moss+2007' rel='tag' target='_self'>moss 2007</a>, <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a>, <a class='technorati-link' href='http://technorati.com/tag/variations' rel='tag' target='_self'>variations</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/10/30/variations-failed-an-error-was-encountered-performing-this-operation-you-may-re-try-the-operation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint Conference SPC09 Day 3 Review</title>
		<link>http://www.calvinirwin.net/2009/10/22/sharepoint-conference-spc09-day-3-review/</link>
		<comments>http://www.calvinirwin.net/2009/10/22/sharepoint-conference-spc09-day-3-review/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:59:55 +0000</pubDate>
		<dc:creator>Calvin</dc:creator>
				<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[web parts]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.calvinirwin.net/?p=221</guid>
		<description><![CDATA[Day three was a lot of fun as I got to spend three hours in the labs and ran through some pretty cool stuff.  Linq to Sharepoint, Upgrading sites, REST API etc.
As far as the sessions went I was hoping the MultiLingual sites session was going to make me happy with some great news about [...]]]></description>
			<content:encoded><![CDATA[<p>Day three was a lot of fun as I got to spend three hours in the labs and ran through some pretty cool stuff.  Linq to Sharepoint, Upgrading sites, REST API etc.</p>
<p>As far as the sessions went I was hoping the MultiLingual sites session was going to make me happy with some great news about variations.  Instead it seems to be status quo on that system with MS playing the line that you need to plan ahead for this...makes sense but not always possible.  The multi language user interface or MUI for all the chrome is available in every site now and you can switch languages off the site actions bar.</p>
<p>MindSharp had an awesome evangelistical session in the big room on Developiong with REST and LINQ in Sharepoint 2010.  This was another really great session on developing against the new Client Object Model, the Server OM, the ListData.svc REST service.</p>
<p>All in all it was another good day...If I didn't have to spend thenight doing homework it actually would haev been mouch more fun <img src='http://www.calvinirwin.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/conference' rel='tag' target='_self'>conference</a>, <a class='technorati-link' href='http://technorati.com/tag/SharePoint' rel='tag' target='_self'>SharePoint</a>, <a class='technorati-link' href='http://technorati.com/tag/web+parts' rel='tag' target='_self'>web parts</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.calvinirwin.net/2009/10/22/sharepoint-conference-spc09-day-3-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
