<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Flex/AS3 Logging with SOS</title>
	<atom:link href="http://soenkerohde.com/2006/11/flexas3-logging-with-sos/feed/" rel="self" type="application/rss+xml" />
	<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/</link>
	<description>Flash Platform (Flash, Flex, AIR) thoughts and examples</description>
	<lastBuildDate>Sat, 24 Jul 2010 13:37:31 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-23364</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Fri, 24 Oct 2008 08:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-23364</guid>
		<description>Thanks Fabian,
I also have a newer version: http://soenkerohde.com/2008/08/sos-logging-target/</description>
		<content:encoded><![CDATA[<p>Thanks Fabian,<br />
I also have a newer version: <a href="http://soenkerohde.com/2008/08/sos-logging-target/" rel="nofollow">http://soenkerohde.com/2008/08/sos-logging-target/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-23359</link>
		<dc:creator>Fabian</dc:creator>
		<pubDate>Fri, 24 Oct 2008 06:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-23359</guid>
		<description>I know this post is too old to comment. But if your are interesed in an update, you should check my post on SOSmax and Spicelib:
http://blog.insnet.de/2008/10/as3-logging-mit-spicelib-und-sos-max/

Source:http://code.google.com/p/insnet-lab/source/browse/#svn/trunk/Logging/src</description>
		<content:encoded><![CDATA[<p>I know this post is too old to comment. But if your are interesed in an update, you should check my post on SOSmax and Spicelib:<br />
<a href="http://blog.insnet.de/2008/10/as3-logging-mit-spicelib-und-sos-max/" rel="nofollow">http://blog.insnet.de/2008/10/as3-logging-mit-spicelib-und-sos-max/</a></p>
<p>Source:http://code.google.com/p/insnet-lab/source/browse/#svn/trunk/Logging/src</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-449</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Tue, 11 Mar 2008 09:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-449</guid>
		<description>To catch this error you need to add a listener for the thrown IOErrorEvent:

public function SOSLogger( _category:Object ) {
    this._category = _category;
    socket = new XMLSocket();
    socket.addEventListener(IOErrorEvent.IO_ERROR, communicationError);
}

private function communicationError(e:IOErrorEvent):void {
    trace(e);
}

Klaus</description>
		<content:encoded><![CDATA[<p>To catch this error you need to add a listener for the thrown IOErrorEvent:</p>
<p>public function SOSLogger( _category:Object ) {<br />
    this._category = _category;<br />
    socket = new XMLSocket();<br />
    socket.addEventListener(IOErrorEvent.IO_ERROR, communicationError);<br />
}</p>
<p>private function communicationError(e:IOErrorEvent):void {<br />
    trace(e);<br />
}</p>
<p>Klaus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-448</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Sun, 25 Feb 2007 18:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-448</guid>
		<description>I have also seen this problem but no solution yet.
When you got it please tell me ;)</description>
		<content:encoded><![CDATA[<p>I have also seen this problem but no solution yet.<br />
When you got it please tell me <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adampasz</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-447</link>
		<dc:creator>adampasz</dc:creator>
		<pubDate>Sun, 25 Feb 2007 00:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-447</guid>
		<description>One problem I&#039;ve encountered is that if SOS isn&#039;t running and my code tries to log, it throws an exception that looks like this.
at com.soenkerohde.logging::SOSLogger$cinit()
	at global$init()
	at com.soenkerohde.logging::LogFactory$/getLogger()....

Putting a try/catch around the log statement didn&#039;t help.</description>
		<content:encoded><![CDATA[<p>One problem I&#8217;ve encountered is that if SOS isn&#8217;t running and my code tries to log, it throws an exception that looks like this.<br />
at com.soenkerohde.logging::SOSLogger$cinit()<br />
	at global$init()<br />
	at com.soenkerohde.logging::LogFactory$/getLogger()&#8230;.</p>
<p>Putting a try/catch around the log statement didn&#8217;t help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adampasz</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-446</link>
		<dc:creator>adampasz</dc:creator>
		<pubDate>Fri, 23 Feb 2007 03:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-446</guid>
		<description>Thanks for this.  It works great for me.  Much better than the default method of tracing to a text file. :)</description>
		<content:encoded><![CDATA[<p>Thanks for this.  It works great for me.  Much better than the default method of tracing to a text file. <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sönke</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-445</link>
		<dc:creator>Sönke</dc:creator>
		<pubDate>Sun, 18 Feb 2007 13:01:38 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-445</guid>
		<description>Hi,

do you get the errors when compiling with mtasc?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>do you get the errors when compiling with mtasc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lieven Cardoen</title>
		<link>http://soenkerohde.com/2006/11/flexas3-logging-with-sos/comment-page-1/#comment-444</link>
		<dc:creator>Lieven Cardoen</dc:creator>
		<pubDate>Tue, 13 Feb 2007 10:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://soenkerohde.com/2006/11/06/flexas3-logging-with-sos/#comment-444</guid>
		<description>Hi Sönke Rohde,

I tried your classes and I get a few errors ...

SOSLogger Line 70 &#38; Line 90 : Syntax Error : bitwiseand is unexpected
SOSLogger Line 90 : Syntax Error : expecting rightbrace before xmltagendend
SOSLogger Line 90 : Syntax Error : expecting rightparen before semicolon

How can I resolve this?

thx, Lieven Cardoen, IndieGroup, Belguim</description>
		<content:encoded><![CDATA[<p>Hi Sönke Rohde,</p>
<p>I tried your classes and I get a few errors &#8230;</p>
<p>SOSLogger Line 70 &#38;#38; Line 90 : Syntax Error : bitwiseand is unexpected<br />
SOSLogger Line 90 : Syntax Error : expecting rightbrace before xmltagendend<br />
SOSLogger Line 90 : Syntax Error : expecting rightparen before semicolon</p>
<p>How can I resolve this?</p>
<p>thx, Lieven Cardoen, IndieGroup, Belguim</p>
]]></content:encoded>
	</item>
</channel>
</rss>
