<?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>NotSoNerdy.com &#187; Troubleshooting</title>
	<atom:link href="http://www.notsonerdy.com/category/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.notsonerdy.com</link>
	<description>A not so nerdy developers look at programming and life.</description>
	<lastBuildDate>Mon, 18 May 2009 03:50:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8216;AJAXControlToolkit&#8217; is undefined &#8211; iislog sc-win32-status = 64 and sc-status = 200</title>
		<link>http://www.notsonerdy.com/2007/12/13/ajaxcontroltoolkit-is-undefined-iislog-sc-win32-status-64-and-sc-status-200/</link>
		<comments>http://www.notsonerdy.com/2007/12/13/ajaxcontroltoolkit-is-undefined-iislog-sc-win32-status-64-and-sc-status-200/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 00:23:33 +0000</pubDate>
		<dc:creator>Matthew Williams</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.notsonerdy.com/2007/12/13/ajaxcontroltoolkit-is-undefined-iislog-sc-win32-status-64-and-sc-status-200/</guid>
		<description><![CDATA[So I deployed a killer internal application today that well over 400 employees will be using on a daily basis. I decided to use the AJAX control toolkit to give the application better error checking and more of a windows application feel without having to deal with the deployment and maintenance of a windows app. [...]]]></description>
			<content:encoded><![CDATA[<p>So I deployed a killer internal application today that well over 400 employees will be using on a daily basis. I decided to use the AJAX control toolkit to give the application better error checking and more of a windows application feel without having to deal with the deployment and maintenance of a windows app.  We all know how fun that can be in an enterprise!!  Needless to say, the application passed through QA with flying colors and moved on to production. That is where we ran into some problems.  It was random, and it was very difficult to trace, not to mention we didn&#8217;t have technical people doing the troubleshooting at the client level.  As we started to parse the IIS logs, we found that we were getting a IIS Status 64 which is a network type error from IIS.  It was always preceeded with a success (200) status.  Our server engineering department went the route of verifying we were all good on the network side while I kept trying to get on an effected machine.</p>
<p>After finally getting on the phone with someone who was experiencing the issue, I was able to determine the issue was related to a JS error. &#8216;AJAXControlToolkit&#8217; is undefined.  GREAT, but WHY???</p>
<p><strong>SIDE NOTE:</strong> We were very early adopters of the toolkit during its beta stages.  MS was great with helping to resolve issues as well as incorporate our feedback in future releases.  One of those items was the script combiner in the library.  The toolkit is VERY heavy when it is not compressed (~500k) based on what controls you are using.  This amounts to 14 different scripts being pulled down on our servers which is one for every control type and a few for the framework itself.  As you can guess, this is pretty taxing on the client vs. just getting one file.  We manually implemented the script combining on our customer site which took 3 seconds off the average download time due to less items having to be called from the server.  Not to mention compression that took the ~500k script to ~90k.  With the following in the latest release you can do this without having a manual work around.</p>
<p><strong>The problem</strong></p>
<pre class="html4strict">Bad
<span style="color: #ddbb00;">&amp;lt;</span>ajaxtoolkit:ToolkitScriptManager ID=&quot;_ScriptManager&quot;
     runat=&quot;server&quot; combinescripts=&quot;true&quot; /<span style="color: #ddbb00;">&amp;gt;</span></pre>
<p>Great right?  Wrong&#8230; this is what was causing the issue!!!  The script combiner for some reason doesn&#8217;t always generate the script for the client.  It is pretty buggy actually.  We were finding that clearing the users cache would only work until the next build would come out.  After that, we would have to clear the cache again for all 400 clients.  Because of this we were ready to scrap the controls (which MADE the application) for standard ASP.NET controls.  </p>
<p>So, the workaround&#8230; go back to our standard hack that combined the files&#8230; and for those that don&#8217;t want to do the hack?  Switch the combinescripts tag to true and your problem will go away!</p>
<p><strong>The fix:</strong></p>
<pre class="html4strict">Good
<span style="color: #ddbb00;">&amp;lt;</span>ajaxtoolkit:ToolkitScriptManager ID=&quot;_ScriptManager&quot;
     runat=&quot;server&quot; combinescripts=&quot;false&quot; /<span style="color: #ddbb00;">&amp;gt;</span></pre>
<p>Needless to say, this was a big &#8220;phew&#8221; from us.  We believe the framework has a lot of great potential for internal apps by allowing us to have a windows like feel without the deployment nightmare.  The application has already proved to have a huge payoff with this fix alone.  We were able to deploy enterprise wide in less than 10 seconds with an automated build.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsonerdy.com/2007/12/13/ajaxcontroltoolkit-is-undefined-iislog-sc-win32-status-64-and-sc-status-200/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 Team Foundation Server Build Install Error</title>
		<link>http://www.notsonerdy.com/2007/12/06/visual-studio-2008-team-foundation-server-build-install-error/</link>
		<comments>http://www.notsonerdy.com/2007/12/06/visual-studio-2008-team-foundation-server-build-install-error/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 18:07:03 +0000</pubDate>
		<dc:creator>Matthew Williams</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.notsonerdy.com/2007/12/06/visual-studio-2008-team-foundation-server-build-install-error/</guid>
		<description><![CDATA[So I was able to get TFS 2008 Build to install finally today, but not until I got passed a nasty error.

This was a pain for me, but the fix is simple.  Set your Team Foundation Server Service Account (used for TFS Web Services) to a non system account.  You will need to [...]]]></description>
			<content:encoded><![CDATA[<p>So I was able to get TFS 2008 Build to install finally today, but not until I got passed a nasty error.</p>
<p><a href='http://www.notsonerdy.com/wp-content/uploads/2007/12/tfs_build_error_2008.gif' title='Microsoft Visual Studio 2008 Team Foundation Server Build - ENU has encountered a problem during setup.  Setup did not complete correctly.'><img src='http://www.notsonerdy.com/wp-content/uploads/2007/12/tfs_build_error_2008.thumbnail.gif' alt='Microsoft Visual Studio 2008 Team Foundation Server Build - ENU has encountered a problem during setup.  Setup did not complete correctly.' /></a></p>
<p>This was a pain for me, but the fix is simple.  Set your Team Foundation Server Service Account (used for TFS Web Services) to a non system account.  You will need to setup a domain account and not a local account to support this.  Why give me the option????</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsonerdy.com/2007/12/06/visual-studio-2008-team-foundation-server-build-install-error/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft Zune MP3 Player Is Locking Up&#8230; Guess I Have To Eat Crow&#8230;</title>
		<link>http://www.notsonerdy.com/2007/02/02/microsoft-zune-mp3-player-is-locking-up-guess-i-have-to-eat-crow/</link>
		<comments>http://www.notsonerdy.com/2007/02/02/microsoft-zune-mp3-player-is-locking-up-guess-i-have-to-eat-crow/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 15:11:54 +0000</pubDate>
		<dc:creator>Matthew Williams</dc:creator>
				<category><![CDATA[Rambling]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.notsonerdy.com/2007/02/02/microsoft-zune-mp3-player-is-locking-up-guess-i-have-to-eat-crow/</guid>
		<description><![CDATA[So I made a nice little post a while back about my Zune and how much I loved it.  My relationship has quickly become a love hate type of thing now.  I really do like all of the features of my Zune.  The screen is amazing&#8230; the music sounds better than my [...]]]></description>
			<content:encoded><![CDATA[<p>So I made a nice little post a while back about my <a href="http://www.notsonerdy.com/2006/11/27/microsofts-new-zune-mp3-player/">Zune and how much I loved it</a>.  My relationship has quickly become a love hate type of thing now.  I really do like all of the features of my Zune.  The screen is amazing&#8230; the music sounds better than my iPod (could just be the headphones)&#8230; but I have one problem; the damn thing won&#8217;t stop locking up when I am in the gym.  I have noticed that everytime I go to the gym and use the Zune on the treadmill the screen will shut off and the music stops playing.  It then takes me about 60-120 seconds before I can use it again.</p>
<p>I need my music to run because it really does take my mind off the fact that I am running which makes it 20 times easier.  When the damn Zune locks up I have mess with it which causes me to get burnt out much more quickly.  I have tried reloading the software, the Zune, and nothing makes it work for me. </p>
<p>My next step is simple.  I am taking it back to Costco and waiting for the next gen to come out.  They have some major bugs to work out of this thing and I don&#8217;t want to wait for that to happen.</p>
<p>My theory as to what is causing the issue?  Since the Zune only locks up in the gym I am wondering if the wireless (even though turned off) is getting some interferance from the Polar heart rate monitors that are built into the machine?  Either that or it just doesn&#8217;t like exercise.  </p>
<p>Looks like I will have to eat crow and stick with my iPod for a little while longer.  Damn you Microsoft for allowing me to back you up and then crushing me like this!!! DAMN YOU!!!!  I&#8217;m fine now.</p>
<p>Word,<br />
Matt</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsonerdy.com/2007/02/02/microsoft-zune-mp3-player-is-locking-up-guess-i-have-to-eat-crow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Random / Strange Cursor In Firefox&#8230;</title>
		<link>http://www.notsonerdy.com/2006/12/04/random-strange-cursor-in-firefox/</link>
		<comments>http://www.notsonerdy.com/2006/12/04/random-strange-cursor-in-firefox/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 18:53:22 +0000</pubDate>
		<dc:creator>Matthew Williams</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.notsonerdy.com/2006/12/04/random-strange-cursor-in-firefox/</guid>
		<description><![CDATA[So I have noticed that Firefox keeps displaying this random cursor on my pages.  I tried upgrading from 1.5 to 2.0 but the damn thing still wouldn&#8217;t go away.  I found that the cursor is actually showing up because carat blinking was enabled. Not sure how this was enabled, but to disable it [...]]]></description>
			<content:encoded><![CDATA[<p>So I have noticed that Firefox keeps displaying this random cursor on my pages.  I tried upgrading from 1.5 to 2.0 but the damn thing still wouldn&#8217;t go away.  I found that the cursor is actually showing up because carat blinking was enabled. Not sure how this was enabled, but to disable it was pretty simple. </p>
<p><strong>Solution:</strong><br />
Just hit F7 and it will be gone from your screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsonerdy.com/2006/12/04/random-strange-cursor-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2005 Toyota Tundra Maintenance Required Light</title>
		<link>http://www.notsonerdy.com/2006/12/01/2005-toyota-tundra-maintenance-required-light/</link>
		<comments>http://www.notsonerdy.com/2006/12/01/2005-toyota-tundra-maintenance-required-light/#comments</comments>
		<pubDate>Sat, 02 Dec 2006 02:08:17 +0000</pubDate>
		<dc:creator>Matthew Williams</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.notsonerdy.com/2006/12/04/2005-toyota-tundra-maintenance-required-light/</guid>
		<description><![CDATA[Problem:
So I figured I would ramble about good documentation.   I just got my oil changed on my 05 Toyota Tundra (Mmmm double cab, V8, 4&#215;4&#8230; beast&#8230;.) and have noticed in the manual it tells me that when the MAINT REQD light is on that means you need to change your oil.  The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/wp-content/themes/qwilm-03/imagenes_qwilm/IMG_1711-1.JPG" title="This is a great truck... wish the manual was complete. =)" rel="lightbox"><img src="/wp-content/themes/qwilm-03/imagenes_qwilm/IMG_1711.JPG"  align="right" /></a><strong>Problem:</strong><br />
So I figured I would ramble about good documentation.   I just got my oil changed on my 05 Toyota Tundra (Mmmm double cab, V8, 4&#215;4&#8230; beast&#8230;.) and have noticed in the manual it tells me that when the MAINT REQD light is on that means you need to change your oil.  The manual makes it seem that changing the oil will remedy the problem.  BULLPOOPY!! No seriously&#8230; as I sit here and ponder the MAINT REQD light I now think something is wrong with my lovely truck.  Well, it turns out that the light has to be reset MANUALLY.</p>
<p><strong>Solution:</strong><br />
To fix this you need to make sure you odometer is pointed to the odometer (i.e. Not trip A or B).  Turn you key to the off position and then hold the trip reset button down.  Turn your key to the on position and you will see about 5-6 hyphens that will count down.  Once they have finished counting down&#8230; walla!! The light goes out.</p>
<p>Now, what tells this light to come on you say?  Every 5,000 miles +-400 the light will come on and then you have to repeat the process.  Most places you get your oil changed will know this&#8230; (mine had the new guy).</p>
<p><strong>Why I am bitching??</strong><br />
Documentation is key when you are passing a product from the creator to the user.  Average Joe will most likely look to the manual for reference when they find an issue.  The issue should be clearly explained and if there is a human way to fix the issue, it should also be clearly explained.  It really is that simple. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsonerdy.com/2006/12/01/2005-toyota-tundra-maintenance-required-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
