<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Jon Hartmann - Mystery Error Message</title>
			<link>http://www.jonhartmann.com/index.cfm</link>
			<description>Technical blog of West Virginia web developer Jon Hartmann, covering ColdFusion, Asp.NET, Javascript, User Interface Design, and current website trends.</description>
			<language>en-us</language>
			<pubDate>Sun, 05 Sep 2010 12:57:42 -0500</pubDate>
			<lastBuildDate>Thu, 29 Apr 2010 13:11:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jon.hartmann@gmail.com</managingEditor>
			<webMaster>jon.hartmann@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jon.hartmann@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jon Hartmann</title>
				<link>http://www.jonhartmann.com/index.cfm</link>
			</image>
			<itunes:explicit></itunes:explicit>
			
			<item>
				<title>When in Doubt Clear Your Bin</title>
				<link>http://www.jonhartmann.com/index.cfm/2010/4/29/When-in-Doubt-Clear-Your-Bin</link>
				<description>
				
				&lt;img src=&quot;/images/bin.PNG&quot; title=&quot;A Bin&quot; class=&quot;floatTL&quot; /&gt;This is a reminder to myself, and anyone facing down a weird error message when trying to build their ASP.NET application: you need to try clearing out your Bin folder and rebuilding it. I&apos;ve &apos;fixed&apos; probably a dozen build problems so far just by clearing out my Bin and rebuilding the application. To clear your Bin folder:

&lt;ol&gt;
&lt;li&gt;Find your project file in Visual Studio and left click it.&lt;/li&gt;
&lt;li&gt;Go up to the icons in your Solution Explorer and click &apos;Show All Files&apos;.&lt;/li&gt;
&lt;li&gt;Find your Bin folder in your project, and right click it.&lt;/li&gt;
&lt;li&gt;Click &apos;Open File in Windows Explorer&apos;.&lt;/li&gt;
&lt;li&gt;Select everything in the folder (Ctrl + A) and delete it.&lt;/li&gt;
&lt;li&gt;Rebuild your application.&lt;/li&gt;
&lt;/ol&gt;

I&apos;ve got no idea &lt;em&gt;why&lt;/em&gt; there were errors with my applications, or why this fixed them, but its always a good first line of defense. If you&apos;ve got an error message you can&apos;t figure out, clean out your bin. 
				</description>
				
				<category>Mystery Error Message</category>				
				
				<category>ASP.NET</category>				
				
				<pubDate>Thu, 29 Apr 2010 13:11:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2010/4/29/When-in-Doubt-Clear-Your-Bin</guid>
				
			</item>
			
			<item>
				<title>Missing Data Types in Enterprise Architect</title>
				<link>http://www.jonhartmann.com/index.cfm/2010/4/7/Missing-Data-Types-in-Enterprise-Architect</link>
				<description>
				
				&lt;img src=&quot;http://www.jonhartmann.com/images/EnterpriseArchitectLogo.PNG&quot; title=&quot;Enterprise Architect Logo&quot; class=&quot;floatTL&quot; /&gt;If you&apos;ve used Sparx System&apos;s &lt;abbr title=&quot;Enterprise Architect&quot;&gt;EA&lt;/abbr&gt;, you might know that its a quirky little program at times. I&apos;ve come to love the power it gives me to document designs and interactions, even if I&apos;ve had to give myself a crash course on UML just to get my head around it.

One thing I hate though is that sometimes things just don&apos;t work and its  not obvious why its not working. When trying to create a Data Modeling Diagram to display the database objects involved in a proposed update, I found that the Data Types selection for my columns was empty: all the entries were missing. I was getting really frustrated until I checked on the table entity itself and found that Database for this table was not set. Once I changed to SQL Server 2000, my Data Type drop downs populated with the correct values.

In sort, if you&apos;re using EA for a database diagram and your data type selections are blank, you need to check the database setting on the table itself. 
				</description>
				
				<category>Design Software</category>				
				
				<category>Mystery Error Message</category>				
				
				<pubDate>Wed, 07 Apr 2010 10:56:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2010/4/7/Missing-Data-Types-in-Enterprise-Architect</guid>
				
			</item>
			
			<item>
				<title>ASP.NET Error Message: Invalid postback or callback argument</title>
				<link>http://www.jonhartmann.com/index.cfm/2010/1/18/ASPNET-Error-Message-Invalid-postback-or-callback-argument</link>
				<description>
				
				If you&apos;re trying to create a post-back from Javascript in ASP.NET, you might have come across the following error:

&lt;blockquote&gt;
Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
&lt;/blockquote&gt;

This message is caused because ASP is attempting to validate that a given post-back that was initiated from Javascript is really supposed to be happening; basically, it is an attempt to try to prevent cross-site scripting from issuing post-backs. You can do as the message says and register the callback, you can edit your web.config file, or you can do what I do, and add the following line to your Page directive in your .aspx page like so:

&lt;code&gt;&lt;%@ Page EnableEventValidation=&quot;false&quot; ... %&gt;&lt;/code&gt;

&lt;div class=&quot;warning&quot;&gt;
Be aware that by setting EnableEventValidation to false, you&apos;re opening a hole in your security. I&apos;m using this in a situation where the risk has been minimized, but if you&apos;re including external scripts, you might want to actually go through the trouble of registering the event.
&lt;/div&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>Mystery Error Message</category>				
				
				<category>ASP.NET</category>				
				
				<pubDate>Mon, 18 Jan 2010 10:35:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2010/1/18/ASPNET-Error-Message-Invalid-postback-or-callback-argument</guid>
				
			</item>
			
			<item>
				<title>Weird ColdFusion 9 ORM Error</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/10/27/Weird-ColdFusion-9-ORM-Error</link>
				<description>
				
				I&apos;m trying to get a feel for the new ColdFusion 9 ORM setup, and I ran into an error message that I&apos;d not seen before stating that &quot;[Macromedia][SQLServer JDBC Driver][SQLServer]&apos;FK3498A0CE621DF1&apos; is not a constraint.&quot; This isn&apos;t too daunting, since I&apos;m used to weird SQL errors, but when I refreshed the error I got back &quot;[Macromedia][SQLServer JDBC Driver][SQLServer]Cannot find the object &quot;post&quot; because it does not exist or you do not have permissions.&quot; instead.Take a look at the particulars, and see if you can help me out.  [More]
				</description>
				
				<category>Mystery Error Message</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 27 Oct 2009 17:32:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/10/27/Weird-ColdFusion-9-ORM-Error</guid>
				
			</item>
			
			<item>
				<title>IE Forgets Cookies on Sub-Domains with an Underscore</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/9/23/Internet-Explorer-Looses-Cookies-on-SubDomains-with-an-Underscore</link>
				<description>
				
				&lt;img src=&quot;http://www.jonhartmann.com/images/IE_fail.PNG&quot; alt=&quot;Internet Explorer Fail Logo&quot; class=&quot;floatTR&quot; /&gt;Ok, so one more reason to hate IE: Internet Explorer fails to hold cookies when viewing URLs that have a sub-domain with an underscore. I found this when the project I&apos;m developing just refused to hold on to a session when viewing the site from Internet Explorer. Almost all of the server-side technology I was using was new to me, so I lost a full day trying to figure out if it was ColdFusion 9, IIS7, or the ColdFusion on Wheels framework that was breaking the sessions before I found out that the IE browsers choke on underscores. FireFox and Chrome didn&apos;t care about the underscore, but IE6 through IE8 lost their session because they couldn&apos;t hold onto the cookies for the site.

So, if you&apos;re loosing your sessions in Internet Explorer, check your URL. I&apos;m not sure if there are other characters besides an underscore that would cause the cookie loss, but it wouldn&apos;t surprise me. 
				</description>
				
				<category>Internet Explorer</category>				
				
				<category>Mystery Error Message</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 23 Sep 2009 08:49:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/9/23/Internet-Explorer-Looses-Cookies-on-SubDomains-with-an-Underscore</guid>
				
			</item>
			
			<item>
				<title>ColdFusion Intermittently Cannot Find CFC, Part II</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/3/4/ColdFusion-Intermittently-Cannot-Find-CFC-Part-II</link>
				<description>
				
				Ok, follow up to yesterday&apos;s post &quot;&lt;a href=&quot;http://www.jonhartmann.com/index.cfm/2009/3/3/ColdFusion-Intermittently-Cannot-Find-CFC&quot;&gt;ColdFusion Intermittently Cannot Find CFC&lt;/a&gt;&quot;. I&apos;ve updated my tests and still no answers. Help me figure out why ColdFusion sometimes doesn&apos;t want to CreateObject().  [More]
				</description>
				
				<category>Mystery Error Message</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 04 Mar 2009 08:36:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/3/4/ColdFusion-Intermittently-Cannot-Find-CFC-Part-II</guid>
				
			</item>
			
			<item>
				<title>ColdFusion Intermittently Cannot Find CFC</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/3/3/ColdFusion-Intermittently-Cannot-Find-CFC</link>
				<description>
				
				&lt;img src=&quot;http://www.jonhartmann.com/images/bug.PNG&quot; class=&quot;floatTL&quot; /&gt; Ok, so a new one on me... ColdFusion has started to intermittently fail to find a CFC when trying to instantiate it. I started getting emails that the system was erroring out because it failed to find a component for part of a process in our system, but when I went back to try it myself, things worked fine. I dismissed it as odd until it started to happen more often. Click &quot;more&quot; to see how I replicated the problem and help me figure out what is going on.  [More]
				</description>
				
				<category>Mystery Error Message</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 03 Mar 2009 13:21:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/3/3/ColdFusion-Intermittently-Cannot-Find-CFC</guid>
				
			</item>
			</channel></rss>