<?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>MrBuzzy.blog &#187; Flex</title>
	<atom:link href="http://blog.mrbuzzy.biz/category/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mrbuzzy.biz</link>
	<description>It's just a name, okay.</description>
	<lastBuildDate>Mon, 02 Jun 2008 14:53:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Almost time for Scotch</title>
		<link>http://blog.mrbuzzy.biz/2008/06/03/almost-time-for-scotch/</link>
		<comments>http://blog.mrbuzzy.biz/2008/06/03/almost-time-for-scotch/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 14:53:27 +0000</pubDate>
		<dc:creator>MrBuzzy</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.mrbuzzy.biz/?p=39</guid>
		<description><![CDATA[Aye, what happened to my blog header? I must have messed it up by sheer neglect.
I&#8217;m getting pretty excited for Scotch On The Rocks. It should be a lot of fun and I&#8217;m looking forward to meeting all the cool folk who are going. I&#8217;ve just had a good look at the agenda and I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Aye, what happened to my blog header? I must have messed it up by sheer neglect.</p>
<p>I&#8217;m getting pretty excited for Scotch On The Rocks. It should be a lot of fun and I&#8217;m looking forward to meeting all the cool folk who are going. I&#8217;ve just had a good look at the agenda and I&#8217;m thinking, how can I be in 3 places at once!? Oh well, gotta make some sacrifices.</p>
<p>I&#8217;ll be getting in to town about lunchtime on Tuesday and I&#8217;d be grateful to hear about any pre-event drinks or catch ups.<br />
I will keep an eye on Twitter (the bloody thing is broken for IM which is a shame). Feel free to drop me a line on mrbuzzy@gmail.com or Google IM. Dooo it, hey, do it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mrbuzzy.biz/2008/06/03/almost-time-for-scotch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColdFusion &#8211; turn the logging up to 11</title>
		<link>http://blog.mrbuzzy.biz/2007/05/28/coldfusion-turn-the-logging-up-to-11/</link>
		<comments>http://blog.mrbuzzy.biz/2007/05/28/coldfusion-turn-the-logging-up-to-11/#comments</comments>
		<pubDate>Mon, 28 May 2007 11:57:30 +0000</pubDate>
		<dc:creator>MrBuzzy</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.mrbuzzy.biz/?p=8</guid>
		<description><![CDATA[A wee while ago Robin Hilliard blogged some log file tips for Flex and ColdFusion (CF). Bring Flex Data Services (FDS) in to the mix and you may actually pull your hair out.
Open neo-logging.xml for editing, here&#8217;s a few more tips&#8230;
Pop it up
An alternative to running CF in a terminal/console is to enable the ColdFusion [...]]]></description>
			<content:encoded><![CDATA[<p>A wee while ago Robin Hilliard <a href="http://www.rocketboots.com.au/blog/index.cfm?mode=entry&#038;entry=9240DFF9-E081-51EF-A790A882EF9ABF5E">blogged some log file tips</a> for Flex and ColdFusion (CF). Bring Flex Data Services (FDS) in to the mix and you may actually pull your hair out.</p>
<p>Open <strong><em>neo-logging.xml</em></strong> for editing, here&#8217;s a few more tips&#8230;</p>
<p><strong>Pop it up</strong><br />
An alternative to running CF in a terminal/console is to enable the <em>ColdFusion Log Console</em>. Change the following to &#8216;true&#8217; and restart CF to see the java application magically appear.</p>
<p><code>&lt;var name='consoleVisible'&gt;<br />
&lt;boolean value='true'/&gt;<br />
&lt;/var&gt;</code></p>
<p><img src="http://mrbuzzy.biz/images/ColdFusionLogConsoleOSX.jpg" alt="ColdFusion Log Console" width="400" /></p>
<div align="center">The ColdFusion Log Console</div>
<p><span id="more-8"></span></p>
<p>If ColdFusion is running as a Windows service you&#8217;ll need to tick &#8216;Allow service to interact with desktop&#8217; in the log on tab in the service properties.</p>
<p>Unix/OSX people, you probably start CF using the parameter <em>-Djava.awt.headless=true</em>. You&#8217;ll need to remove it (or set to false) for the log console to appear. Keep in mind that doing so will cause problems elsewhere.</p>
<p><strong>Turn it up</strong><br />
The CF console doesn&#8217;t display it&#8217;s &#8216;debug&#8217; level by default. But you can turn it on. Get ready to see all sorts of debugging &#8211; datasources, watchers, messages, etc. Which brings me back to FDS &#8211; when debug is on you will see the CF Event Gateway messages being converted to Flex messages and vica versa. Very handy. Just change this to &#8216;debug&#8217;;<br />
<code><br />
&lt;var name='priority'&gt;<br />
&lt;string&gt;debug&lt;/string&gt;<br />
&lt;/var&gt;<br />
</code></p>
<p>It can be helpful to see what&#8217;s going on inside. Some samples;<br />
<code><br />
Debug [Thread-15] - Sleeping for 10 seconds before retry<br />
Debug [web-0] - auth:[], apptoken:[cfadmin]<br />
Debug [web-0] - unknown auth info found, executing cflogin...<br />
Debug [scheduler-0] - Watcher::run() Mon May 28 20:12:20<br />
</code></p>
<p><strong>OS it up</strong> (I have no idea what that means)<br />
This might be a thing of the past, it doesn&#8217;t do a whole lot. ColdFusion can send some log output to the OS. Here&#8217;s the part to change;<br />
<code><br />
&lt;var name='enableOSLogging'&gt;<br />
&lt;boolean value='true'/&gt;<br />
&lt;/var&gt;<br />
</code></p>
<p>And we&#8217;re done with neo-logging.xml. There you have it, no major crowd pleaser&#8217;s, just occasionally handy stuff.</p>
<p>Cheers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mrbuzzy.biz/2007/05/28/coldfusion-turn-the-logging-up-to-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick dig at Digg</title>
		<link>http://blog.mrbuzzy.biz/2007/05/22/a-quick-dig-at-digg/</link>
		<comments>http://blog.mrbuzzy.biz/2007/05/22/a-quick-dig-at-digg/#comments</comments>
		<pubDate>Mon, 21 May 2007 15:28:57 +0000</pubDate>
		<dc:creator>MrBuzzy</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.mrbuzzy.biz/?p=7</guid>
		<description><![CDATA[So Digg had this cool contest. Build a Flex/Flash/Apollo application using a Digg API. Nice! Who wouldn&#8217;t want to do that.
Here&#8217;s where Digg fails to impress &#8211; the contest is only for US residents. Why do &#8216;they&#8217; always do that? Isn&#8217;t this the Internet, man?
]]></description>
			<content:encoded><![CDATA[<p>So Digg had this cool <a href="http://digg.com/contest">contest</a>. Build a Flex/Flash/Apollo application using a Digg API. Nice! Who wouldn&#8217;t want to do that.</p>
<p>Here&#8217;s where Digg fails to impress &#8211; the contest is only for US residents. Why do &#8216;they&#8217; always do that? Isn&#8217;t this the Internet, man?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mrbuzzy.biz/2007/05/22/a-quick-dig-at-digg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
