<?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>Think Originally</title>
	<atom:link href="http://blog.thinkoriginally.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thinkoriginally.com</link>
	<description>Fresh Ideas.  Creative Solutions.</description>
	<lastBuildDate>Tue, 08 May 2012 16:15:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-beta1</generator>
		<item>
		<title>Using Microsoft Remote Desktop over an SSH Tunnel</title>
		<link>http://blog.thinkoriginally.com/2012/05/08/using-microsoft-remote-desktop-over-an-ssh-tunnel/</link>
		<comments>http://blog.thinkoriginally.com/2012/05/08/using-microsoft-remote-desktop-over-an-ssh-tunnel/#comments</comments>
		<pubDate>Tue, 08 May 2012 16:14:31 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[IT Best Practices]]></category>
		<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=286</guid>
		<description><![CDATA[This assumes you are on a Windows machine trying to remotely login to a Windows machine, but you need to use an SSH tunnel to get through the firewall. The overall idea is that you set up a port on the local computer to forward all traffic to a port on the remote computer. Then [...]]]></description>
			<content:encoded><![CDATA[<p>This assumes you are on a Windows machine trying to remotely login to a Windows machine, but you need to use an SSH tunnel to get through the firewall.</p>
<p>The overall idea is that you set up a port on the local computer to forward all traffic to a port on the remote computer. Then you use remote desktop to &#8220;remote&#8221; into the _local computer_, but because the traffic gets forwarded, you actually connect to the remote one. The one little catch is that Windows doesn&#8217;t think you should remote desktop to your own computer, so you can&#8217;t just use &#8220;localhost&#8221;, instead you can use 127.254.254.254, which will still route to the localhost, but won&#8217;t register to remote desktop as a circular reference.</p>
<p>1. Download and run putty.exe.</p>
<p>2. On the &#8220;Session&#8221; tab (the default one)<br />
Under the Host Name, put:<br />
your-account@hostname.com<br />
Leave the Port at 22, and the connection type at SSH</p>
<p>3. Click the &#8220;Connection&#8221; tab on the side, and drill down to SSH and &#8220;Tunnels&#8221;</p>
<p>4. Under &#8220;Source Port&#8221;:<br />
Enter 127.254.254.254:3389<br />
(yes it is a little box, but put in this whole IP address).<br />
This is an IP address that will map to the &#8220;local host&#8221; ip address, but because it&#8217;s not just &#8220;localhost&#8221; Windows will not &#8220;detect&#8221; the circular reference and let it through when you try to do the remote desktop. The port 3389 is the default port for remote desktop.</p>
<p>5. Under &#8220;Destination&#8221;, put the IP address you want to connect to (ie, the static internal IP address of the computer as if you were inside the network.)<br />
So this will be something like 192.168.29.18:3389.</p>
<p>6. Go back to the session tab.<br />
In the Saved Sessions box, type: &#8220;rd port forward&#8221; or something like that, and click &#8220;Save.&#8221;<br />
Then for future use, you can simply select this session and have everything set up.</p>
<p>7. Click &#8220;open&#8221; and supply your account password. This will log you into a standard SSH session, but in addition, it will be forwarding traffic on port 3389 to the supplied one.<br />
Leave this SSH window open in the background while you remote desktop in.</p>
<p>8. Run Remote Desktop.<br />
(I click Start -> Run, and then type &#8220;mstsc&#8221; (Microsoft terminial services client) to run it.)<br />
Under the computer name type: &#8220;127.254.254.254&#8243;<br />
Again this will refer to &#8220;localhost&#8221; but then putty will redirect this port to the one on the remote computer.</p>
<p>9. Login to the remote computer and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2012/05/08/using-microsoft-remote-desktop-over-an-ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gnuplot box and whiskers plot</title>
		<link>http://blog.thinkoriginally.com/2011/06/14/gnuplot-box-and-whiskers-plot/</link>
		<comments>http://blog.thinkoriginally.com/2011/06/14/gnuplot-box-and-whiskers-plot/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 04:59:00 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[gnuplot]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=275</guid>
		<description><![CDATA[Every time I use gnuplot, I am amazed at how difficult it is to conjure up the simplest graphs, so when I finally get to the bottom of one, I&#8217;ll try to post the solution here as a reference for myself, and anyone else who might come looking. If you&#8217;re new to gnuplot, you might [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I use gnuplot, I am amazed at how difficult it is to conjure up the simplest graphs, so when I finally get to the bottom of one, I&#8217;ll try to post the solution here as a reference for myself, and anyone else who might come looking.</p>
<p>If you&#8217;re new to gnuplot, you might want to get out now while you still can <img src='http://blog.thinkoriginally.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<h2>The box and whiskers plot</h2>
<p>There are a few different styles of box and whiskers plots and <a href="http://www.gnuplot.info/demo/candlesticks.html" target="_blank">this link</a> gives a pretty good description.</p>
<p>The two gotchas for were what values you need and in what order. These scripts are set up to use the following columns, in order:</p>
<ul>
<li>X value (for ordering left-right across the graph)</li>
<li>Min</li>
<li>1st Quartile</li>
<li>Median</li>
<li>3rd Quartile</li>
<li>Max</li>
</ul>
<p>The other gotcha I had was wanting to have labels across the x-axis rather than numbers. To accomplish this, I added a 7th column with the label, then I used the following:</p>
<pre>
set xrange[0:3]
set yrange[0:10]

# Data columns: X Min 1stQuartile Median 3rdQuartile Max Titles
set bars 4.0
set style fill empty
plot 'data.csv' using 1:3:2:6:5:xticlabels(7) with candlesticks title 'Quartiles' whiskerbars, \
  ''         using 1:4:4:4:4 with candlesticks lt -1 notitle
</pre>
<p>The xticlabels(7) is the key to the x-axis labels, saying to use the values from column 7 for the labels.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2011/06/14/gnuplot-box-and-whiskers-plot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Invoke or BeginInvoke cannot be called on a control until the window handle has been created.</title>
		<link>http://blog.thinkoriginally.com/2010/10/14/invoke-or-begininvoke-cannot-be-called-on-a-control-until-the-window-handle-has-been-created/</link>
		<comments>http://blog.thinkoriginally.com/2010/10/14/invoke-or-begininvoke-cannot-be-called-on-a-control-until-the-window-handle-has-been-created/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 22:05:48 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=270</guid>
		<description><![CDATA[Today I tried installing MS SQL Server Management Studio Express and received the following error: TITLE: SQL Server Setup failure. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; SQL Server Setup has encountered the following error: Invoke or BeginInvoke cannot be called on a control until the window handle has been created.. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; BUTTONS: OK &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; I searched around the internet and [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Today I tried installing MS SQL Server Management Studio Express and received the following error:</div>
<blockquote>
<div>TITLE: SQL Server Setup failure.</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div id="_mcePaste">SQL Server Setup has encountered the following error:</div>
<div id="_mcePaste">Invoke or BeginInvoke cannot be called on a control until the window handle has been created..</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div id="_mcePaste">BUTTONS:</div>
<div id="_mcePaste">OK</div>
<div id="_mcePaste">
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
</div>
</blockquote>
<div>I searched around the internet and found some suggestions to close everything and re-run.  I had quite a few doubts that this would make any difference, but sure enough it worked for me.  I closed all windows, made sure the installer window had focus, and it worked.</div>
<div>Still not really sure what the exact problem was, but at least this &#8220;workaround&#8221; took care of the problem for me.</div>
<div>Environment:</div>
<div>Windows Vista (32-bit)</div>
<div>Microsoft SQL Server Management Studio Express 2008</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/10/14/invoke-or-begininvoke-cannot-be-called-on-a-control-until-the-window-handle-has-been-created/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tortoise SVN on Windows over SSH (svn+ssh): Cache password to avoid the repeated dialog</title>
		<link>http://blog.thinkoriginally.com/2010/09/17/tortoise-svn-on-windows-over-ssh-svnssh-cache-password-to-avoid-the-repeated-dialog/</link>
		<comments>http://blog.thinkoriginally.com/2010/09/17/tortoise-svn-on-windows-over-ssh-svnssh-cache-password-to-avoid-the-repeated-dialog/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 16:54:05 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=261</guid>
		<description><![CDATA[My environment: Linux server, Windows Client You can use Tortoise SVN to access a repository over ssh by simply changing your url to be something along the lines of: svn+ssh://myuser@mysite.com/users/myuser/svnroot but then you are repeatedly given the password dialog, with no option to save or cache your password. The way to get around this is [...]]]></description>
			<content:encoded><![CDATA[<p>My environment: Linux server, Windows Client</p>
<p>You can use Tortoise SVN to access a repository over ssh by simply changing your url to be something along the lines of:</p>
<p>svn+ssh://myuser@mysite.com/users/myuser/svnroot</p>
<p>but then you are repeatedly given the password dialog, with no option to save or cache your password.</p>
<p>The way to get around this is to use ssh and keep the store the key in your pageant list.  So essentially the steps are:</p>
<ol>
<li>Create a .ssh dir under your home directory on the server</li>
<li>Generate a public and private key on the server, and put the public key in your ssh dir</li>
<li>Convert the private key to the format Putty likes (using puttygen.exe)</li>
<li>Create a saved session in Putty for logging into your server with your private key</li>
<li>Have pageant.exe running and add the private key to the list stored in pageant, so you don&#8217;t have to continue to enter the passphrase</li>
<li>Change your repository URL to have your putty saved session as the &#8220;server&#8221; rather than &#8220;myuser@mysite.com&#8221;</li>
</ol>
<p>The following two sites do a great job of walking through the details of how to do each step above:</p>
<ul>
<li><a href="http://tortoisesvn.net/ssh_howto">http://tortoisesvn.net/ssh_howto</a></li>
<li><a href="http://support.tigertech.net/tortoise-svn">http://support.tigertech.net/tortoise-svn</a></li>
</ul>
<p>However, when trying to import my private key into puttygen, I received the error:</p>
<blockquote><p>&#8220;Couldn&#8217;t load private key (ciphers other than DES-EDE3-CBC not supported)&#8221;</p></blockquote>
<p>Which I solved by getting a different snapshot of putty gen from: <a href="http://tartarus.org/~simon/putty-snapshots/x86/puttygen.exe" target="_blank">http://tartarus.org/~simon/putty-snapshots/x86/puttygen.exe</a> (as described on : <a href="http://winscp.net/forum/viewtopic.php?t=8324">http://winscp.net/forum/viewtopic.php?t=8324</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/09/17/tortoise-svn-on-windows-over-ssh-svnssh-cache-password-to-avoid-the-repeated-dialog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQLManagementStudio_x64_ENU.exe is not a valid Win32 Application</title>
		<link>http://blog.thinkoriginally.com/2010/07/06/sqlmanagementstudio_x64_enu-exe-is-not-a-valid-win32-application/</link>
		<comments>http://blog.thinkoriginally.com/2010/07/06/sqlmanagementstudio_x64_enu-exe-is-not-a-valid-win32-application/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 23:17:50 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=259</guid>
		<description><![CDATA[Today I installed SQL Server Management Studio Express (standalone) on a brand new Windows Server 2008 R2 x64 machine. After downloading the install from Microsoft and running it, I received the following error: &#8220;SQLManagementStudio_x64_ENU.exe is not a valid Win32 Application&#8221; I assumed I had some weird versioning issue, and read all kinds of blogs about [...]]]></description>
			<content:encoded><![CDATA[<p>Today I installed SQL Server Management Studio Express (standalone) on a brand new Windows Server 2008 R2 x64 machine.</p>
<p>After downloading the install from Microsoft and running it, I received the following error:</p>
<p>&#8220;SQLManagementStudio_x64_ENU.exe is not a valid Win32 Application&#8221;</p>
<p>I assumed I had some weird versioning issue, and read all kinds of blogs about internal db&#8217;s included with Windows Server, etc.  Come to find out, the download was corrupted, and re-downloading the file, solved my problem.</p>
<p>So in the end it was trivial, but I figured I would post about it, because the error message wasn&#8217;t very telling of what was actually happening.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/07/06/sqlmanagementstudio_x64_enu-exe-is-not-a-valid-win32-application/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web Deployment Configurations in Visual Studio 2010</title>
		<link>http://blog.thinkoriginally.com/2010/06/29/web-deployment-configurations-in-visual-studio-2010/</link>
		<comments>http://blog.thinkoriginally.com/2010/06/29/web-deployment-configurations-in-visual-studio-2010/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 21:38:20 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=255</guid>
		<description><![CDATA[Some quick notes on the basics. I&#8217;ll try to follow this up with another post soon on some of the particulars. Creating a new configuration: Build -&#62; Configuration Manager In the drop down of current configurations, go all the way to the bottom and select &#8220;Add new&#8230;&#8221; You can choose to copy settings from an [...]]]></description>
			<content:encoded><![CDATA[<p>Some quick notes on the basics.  I&#8217;ll try to follow this up with another post soon on some of the particulars.</p>
<p><strong>Creating a new configuration:</strong></p>
<ol>
<li>Build -&gt; Configuration Manager</li>
<li>In the drop down of current configurations, go all the way to the bottom and select &#8220;Add new&#8230;&#8221;</li>
<li>You can choose to copy settings from an existing configuration (such as debug or release)</li>
<li>If you are on the solution configuration drop down, there is a box to create a matching configuration for ALL of your projects</li>
<li>If you are on a project configuration drop down, there is a box to create a matching configuration for the solution</li>
</ol>
<p><strong>Creating a new web.config transform file for the new configuration</strong></p>
<p>Once you have created a new configuration you can set up specific web config rules for it.</p>
<ol>
<li>Right click the web config file in the project</li>
<li>Select &#8220;Add Config Transforms&#8221;</li>
<li>This will add a new config transform named web.[my-configuration-name-here].config that is grouped underneath web.config in the solution explorer.</li>
<li>You can now use this to add some &#8220;transforms&#8221; to the web config for that specific build configuration, such as turning off debug params or changing the db connection string</li>
</ol>
<p><strong>Setting package/publish options</strong></p>
<ol>
<li>Right click the web application project</li>
<li>Select &#8220;Package/Publish Settings&#8221;</li>
<li>Alternatively, you can get to it by selecting project properties and then the &#8220;Package/Publish Web&#8221; tab</li>
<li>Change settings as appropriate</li>
<li>Note: there is also a tab for package/publish SQL options if you want it to handle DB stuff as well</li>
</ol>
<p><strong>Building a deployment package</strong></p>
<ol>
<li>Right click the project</li>
<li>Select Build Deployment package</li>
<li>The default location for this to build to is /[my-project-name]/obj/[my-configuration-name/Package</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/06/29/web-deployment-configurations-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts.</title>
		<link>http://blog.thinkoriginally.com/2010/05/03/microsoft-jscript-runtime-error-ajaxcontroltoolkit-requires-asp-net-ajax-4-0-scripts/</link>
		<comments>http://blog.thinkoriginally.com/2010/05/03/microsoft-jscript-runtime-error-ajaxcontroltoolkit-requires-asp-net-ajax-4-0-scripts/#comments</comments>
		<pubDate>Mon, 03 May 2010 20:49:39 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=249</guid>
		<description><![CDATA[After including a control from the ASP.Net AjaxControlToolkit I got this error: Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll. I believe there are many other problems which can cause this [...]]]></description>
			<content:encoded><![CDATA[<p>After including a control from the ASP.Net AjaxControlToolkit I got this error:</p>
<blockquote><p>Microsoft JScript runtime error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll.</p></blockquote>
<p>I believe there are many other problems which can cause this symptom, but in my case, as the error message says, the solution is that you need to include the &#8220;ToolkitScriptManager&#8221; rather than the standard &#8220;ScriptManager&#8221;</p>
<p>To add the ToolkitScriptManager, you first need to include the assembly namespace on your aspx page.</p>
<pre>&lt;%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
TagPrefix="asp" %&gt;</pre>
<p>If you control is right on your main page, chances are you have already done this.  But in my case the Ajax control was embedded in a user control, so I didn&#8217;t have it on the main page yet.</p>
<p>Then you can simply include the manager by changing the standard script manager</p>
<pre>&lt;asp:ScriptManager ID="scriptMaster" runat="server"&gt;&lt;/asp:ScriptManager&gt;</pre>
<p>to this:</p>
<pre>&lt;asp:ToolkitScriptManager ID="toolkitScriptMaster" runat="server"&gt;
&lt;/asp:ToolkitScriptManager&gt;</pre>
<p>Environment: Visual Studio 2008, ASP.Net 3.5</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/05/03/microsoft-jscript-runtime-error-ajaxcontroltoolkit-requires-asp-net-ajax-4-0-scripts/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Documentum Content Server 6.5 SP2 on Windows 2008 x64</title>
		<link>http://blog.thinkoriginally.com/2010/04/02/documentum-content-server-6-5-sp2-on-windows-2008-x64/</link>
		<comments>http://blog.thinkoriginally.com/2010/04/02/documentum-content-server-6-5-sp2-on-windows-2008-x64/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 15:12:20 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[documentum]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=230</guid>
		<description><![CDATA[Over the past month I have been struggling with an install of Documentum Content Server 6.5 SP2 on Windows Server 2008 x64. Here is a summary of some of the problems I encountered and the eventual path I took. Support for Windows Server 2008 R2 In the official release notes, only Windows Server 2008 (not [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past month I have been struggling with an install of Documentum Content Server 6.5 SP2 on Windows Server 2008 x64.</p>
<p><a href="http://blog.thinkoriginally.com/tags/documentum">Here</a> is a summary of some of the problems I encountered and the eventual path I took.</p>
<p><strong>Support for Windows Server 2008 R2</strong><br />
In the official release notes, only Windows Server 2008 (not R2) is listed.  But the release notes predate the release of R2, so it was a little bit up in the air.  The word from support was essentially it was supported as long as there weren&#8217;t any problems&#8211;not really what I had hoped for.</p>
<p>I decide to try the install anyway, and hoped things would work out.  During the install, it proceeded to the point of trying to start the initial docbroker and gave the following error message:</p>
<blockquote><p>Error &#8211; The service did not respond to the start of control request in a timely fashion</p></blockquote>
<p>Trying to start the service manually from the Administrative Tools -&gt; Services, gave the same result.  I tried many different things involving disabling firewalls and adding more permissions and was unsuccessful.</p>
<p>I ultimately decided to switch back to Windows Server 2008 (not R2), and the docbroker started up just fine.</p>
<p><strong>64 Bit Support and Documentum 6.5 SP3 (as opposed to SP2)</strong></p>
<p>After working through some other issues with regard to Sql Server connections (which I&#8217;ll document in another post) I finally made it through the install &#8220;successfully&#8221; (without it erroring out).</p>
<p>But then when I opened the Documentum Server Manager, my Docbase did not display in the list and neither did my Docbroker.</p>
<p>It was at this point that Documentum released a new service pack (6.5 SP3).  One of the biggest differences I noticed in the release notes was that in 6.5 SP2 they listed support for 64 bit operating systems with an asterisk that said, the server would run in 32 bit emulation mode.  In SP3 this limitation was not listed, so I assumed this means the server will now actually take advantage of the 64 bit machine.</p>
<p>Given the fact that I wasn&#8217;t having much success anyway, I completely uninstalled 6.5 SP2 and reinstalled this time with 6.5 SP3.  At this point when the install finished, my Docbase and Docbroker showed up just fine in the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/04/02/documentum-content-server-6-5-sp2-on-windows-2008-x64/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#039;s in an A</title>
		<link>http://blog.thinkoriginally.com/2010/03/11/whats-in-an-a/</link>
		<comments>http://blog.thinkoriginally.com/2010/03/11/whats-in-an-a/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 00:35:23 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=226</guid>
		<description><![CDATA[Today in my software engineering class I gave the students their group project, on which they will be working for the rest of the semester. In doing so, I outlined the requirements and identified additional features that could be added but were not required. Then, in discussing grading for the project, we went over the [...]]]></description>
			<content:encoded><![CDATA[<p>Today in my software engineering class I gave the students their group project, on which they will be working for the rest of the semester.  In doing so, I outlined the requirements and identified additional features that could be added but were not required.</p>
<p>Then, in discussing grading for the project, we went over the way that they would give scores to themselves and their teammates in various capacities.  Each one will be a 5 point scale with 0 representing complete failure in an area and 4 representing meeting expectations.  A score of 5 would indicated an area where they had gone above and beyond what was needed.  For example, in teamwork, a 4 represents completing assigned tasks thoroughly and efficiently, but a 5 means the student took initiative in seeking out others tasks, making sure they were complete and generally exceeding expectations in leadership.</p>
<p>The question was asked, therefore, if completing &#8220;additional features&#8221; was necessary for an &#8216;A&#8217; grade, or if fulfilling the base requirements was sufficient.  It made me stop to reflect on what grades have become.</p>
<p>There should be a way to reward a student that consistently exceeds expectations.  But a 110% &#8216;A&#8217; doesn&#8217;t look any different than a 94% &#8216;A&#8217; on their transcript.  Perhaps the system was designed for &#8216;C&#8217; to really be average, but my experience has been that expectations have changed across the board, and that an &#8216;A&#8217; really means: base requirements fulfilled as needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/03/11/whats-in-an-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net Config Error: &quot;This configuration section cannot be used at this path.&quot;</title>
		<link>http://blog.thinkoriginally.com/2010/02/17/asp-net-config-error-this-configuration-section-cannot-be-used-at-this-path/</link>
		<comments>http://blog.thinkoriginally.com/2010/02/17/asp-net-config-error-this-configuration-section-cannot-be-used-at-this-path/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 23:28:56 +0000</pubDate>
		<dc:creator>sburton</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Evaulation and Tips]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net 3.5 with iis 7]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://blog.thinkoriginally.com/?p=200</guid>
		<description><![CDATA[I recently setup an ASP.Net 3.5 web application on a new Windows 2008 R2 server with IIS 7 and ran into a few issues.  I will post about them all under the tag: &#8220;asp.net 3.5 with iis 7&#8220;. After setting up the file system and creating the application, I tried to load the default document [...]]]></description>
			<content:encoded><![CDATA[<p>I recently setup an ASP.Net 3.5 web application on a new Windows 2008 R2 server with IIS 7 and ran into a few issues.  I will post about them all under the tag: &#8220;<a href="http://blog.thinkoriginally.com/tag/asp-net-3-5-with-iis-7/">asp.net 3.5 with iis 7</a>&#8220;.</p>
<p>After setting up the file system and creating the application, I tried to load the default document in a browser and got:</p>
<p style="padding-left:30px;">HTTP Error 500.19 &#8211; Internal Server Error</p>
<p style="padding-left:30px;">The requested page cannot be accessed because the related configuration data for the page is invalid.</p>
<div id="_mcePaste" style="padding-left:30px;">Module IIS Web Core</div>
<div id="_mcePaste" style="padding-left:30px;">Notification BeginRequest</div>
<div id="_mcePaste" style="padding-left:30px;">Handler Not yet determined</div>
<div id="_mcePaste" style="padding-left:30px;">Error Code 0&#215;80070021</div>
<div id="_mcePaste" style="padding-left:30px;">Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault=&#8221;Deny&#8221;), or set explicitly by a location tag with overrideMode=&#8221;Deny&#8221; or the legacy allowOverride=&#8221;false&#8221;.</div>
<p style="padding-left:30px;">Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0&#215;80070021 Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault=&#8221;Deny&#8221;), or set explicitly by a location tag with overrideMode=&#8221;Deny&#8221; or the legacy allowOverride=&#8221;false&#8221;.</p>
<p>The solution was to make a change in the applicationHost.config file.</p>
<ol>
<li>Browse to &#8220;C:\Windows\System32\inetsrv\config&#8221; (you will need administrator rights here)</li>
<li>Open applicationHost.config</li>
<li>Find the section that showed up in the &#8220;config source&#8221; part of the error message page.  For me this has typically been &#8220;modules&#8221; or &#8220;handlers&#8221;</li>
<li>Change the overrideModeDefault attribute to be &#8220;Allow&#8221;</li>
<li>So the whole line now looks like:</li>
<pre>&lt;section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Allow" /&gt;</pre>
</ol>
<p>After saving the file, the page loaded up fine in my browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thinkoriginally.com/2010/02/17/asp-net-config-error-this-configuration-section-cannot-be-used-at-this-path/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

