<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>DickBlog - Not much original comment, but lots of great resources - ColdFusion MX 6</title>
			<link>http://www.dickblog.com/index.cfm</link>
			<description>DickBlog.com</description>
			<language>en-us</language>
			<pubDate>Mon, 06 Sep 2010 00:45:09 +0100</pubDate>
			<lastBuildDate>Wed, 02 Feb 2005 14:50:00 +0100</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>dick@dickblog.com</managingEditor>
			<webMaster>dick@dickblog.com</webMaster>
			
			<item>
				<title>Manipulate the Admin Debug Settings</title>
				<link>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=D38EB52C-7E97-F825-58807152FBE16B33</link>
				<description>
				
				Here&apos;s a handy UDF which you can use to turn on and off the Admin debug and robust exception settings.&lt;br/&gt;&lt;br/&gt;&amp;lt;cffunction name=&amp;quot;enableDisableDebugging&amp;quot; output=&amp;quot;false&amp;quot; returntype=&amp;quot;void&amp;quot; hint=&amp;quot;I enable/disable debugging settings&amp;quot;&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfargument name=&amp;quot;status&amp;quot; type=&amp;quot;string&amp;quot; required=&amp;quot;true&amp;quot; /&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfset var objDebugServiceFactory=createobject(&amp;quot;java&amp;quot;,&amp;quot;coldfusion.server.ServiceFactory&amp;quot;).getDebuggingService()&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfif arguments.status EQ &amp;quot;enable&amp;quot;&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfif not objDebugServiceFactory.isEnabled()&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfset objDebugServiceFactory.setEnabled(true)&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfset objDebugServiceFactory.setRobustEnabled(true)&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfif&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfelseif arguments.status EQ &amp;quot;disable&amp;quot;&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfif objDebugServiceFactory.isEnabled()&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfset objDebugServiceFactory.setEnabled(false)&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfset objDebugServiceFactory.setRobustEnabled(false)&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfif&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfif&amp;gt;&lt;br/&gt;&amp;lt;/cffunction&amp;gt;&lt;br/&gt;&lt;br/&gt;Then you need to turn on/off the setting with the following in your code...&lt;br/&gt;&lt;br/&gt;&amp;lt;cfoutput&amp;gt;#enableDisableDebugging(&apos;enable&apos;)#&amp;lt;/cfoutput&amp;gt;&lt;br/&gt; 
				</description>
				
				<category>ColdFusion MX 6</category>				
				
				<category>ColdFusion Admin</category>				
				
				<pubDate>Wed, 02 Feb 2005 14:50:00 +0100</pubDate>
				<guid>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=D38EB52C-7E97-F825-58807152FBE16B33</guid>
				
			</item>
			
			<item>
				<title>Programmatically Restarting ColdFusion MX</title>
				<link>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=D2D6C539-7E97-F825-5DC7A1DB5AF2737D</link>
				<description>
				
				From Steve Erat&apos;s blog...&lt;br/&gt;&lt;br/&gt;&amp;quot;Here&apos;s a &lt;a href=&quot;http://www.talkingtree.com/blog/index.cfm?mode=alias&amp;amp;alias=RestartCFMX&quot; target=&quot;_blank&quot;&gt;UDF &lt;/a&gt;I came up with to restart ColdFusion MX from your code.
Say you needed a way to restart, but you&apos;re not on the server or can&apos;t
get a remote desktop on the server, or perhaps you&apos;re monitoring
getMetricData and you have a criterion for which you might wish to
restart CFMX.&amp;quot; 
				</description>
				
				<category>ColdFusion MX 6</category>				
				
				<category>ColdFusion Admin</category>				
				
				<pubDate>Wed, 02 Feb 2005 11:30:00 +0100</pubDate>
				<guid>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=D2D6C539-7E97-F825-5DC7A1DB5AF2737D</guid>
				
			</item>
			
			<item>
				<title>Page Compression</title>
				<link>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=B8C5C736-7E97-F825-5E5EFEA245A645C6</link>
				<description>
				
				As this blog will be moving to Windows 2003/IIS 6 soon, this blog about &lt;a target=&quot;_blank&quot; href=&quot;http://www.webdevref.com/blog/index.cfm?t=Stripping_Whitespace_for_13Mb_extra_bandwidth_per_day&amp;amp;mode=entry&amp;amp;entry=B5415824-D610-A6A8-6D8F5EE19E22DD25&quot;&gt;compressing HTML&lt;/a&gt; it worth remembering.&lt;br/&gt;&lt;br/&gt;I also found this &lt;a href=&quot;http://www.isapilabs.com/support/articles/httpcompression.htm&quot; target=&quot;_blank&quot;&gt;article&lt;/a&gt;.&lt;br/&gt; 
				</description>
				
				<category>Web Stuff</category>				
				
				<category>Windows</category>				
				
				<category>ColdFusion MX 6</category>				
				
				<category>HTML</category>				
				
				<pubDate>Fri, 28 Jan 2005 10:00:00 +0100</pubDate>
				<guid>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=B8C5C736-7E97-F825-5E5EFEA245A645C6</guid>
				
			</item>
			
			<item>
				<title>Slower performance with IIS 6.0 than IIS 5.0</title>
				<link>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=762128F7-805F-FD36-6C88AFE6C471C49A</link>
				<description>
				
				&lt;P&gt;&lt;A class=&quot;&quot; href=&quot;http://www.macromedia.com/support/coldfusion/ts/documents/iis6_slow_perf.htm&quot; target=_blank&gt;Macromedia TechNote&lt;/A&gt;&lt;/P&gt; 
				</description>
				
				<category>ColdFusion MX 6</category>				
				
				<pubDate>Thu, 28 Oct 2004 00:00:00 +0100</pubDate>
				<guid>http://www.dickblog.com/index.cfm?mode=entry&amp;entry=762128F7-805F-FD36-6C88AFE6C471C49A</guid>
				
			</item>
			</channel></rss>