<?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: Handle Socket-Data depending on CRLF</title>
	<atom:link href="http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/</link>
	<description>Actionscript3, Flash, Scala, Java, C#, C++, Algorithms &#38; Imageprocessing</description>
	<lastBuildDate>Sun, 05 Feb 2012 21:26:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: DeCabeza.net &#187; Colección de link útiles sobre ActionScript 3 - desarrollo web, tutoriales, video tutoriales, videotutoriales, flash, photoshop, php, mysql, dreamweaver</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-133799</link>
		<dc:creator>DeCabeza.net &#187; Colección de link útiles sobre ActionScript 3 - desarrollo web, tutoriales, video tutoriales, videotutoriales, flash, photoshop, php, mysql, dreamweaver</dc:creator>
		<pubDate>Fri, 27 Jun 2008 14:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-133799</guid>
		<description>[...] Handle Socket - Datos que dependen de CRLF [...]</description>
		<content:encoded><![CDATA[<p>[...] Handle Socket &#8211; Datos que dependen de CRLF [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 红烧带鱼</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-174</link>
		<dc:creator>红烧带鱼</dc:creator>
		<pubDate>Tue, 10 Jan 2006 15:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-174</guid>
		<description>&lt;strong&gt;ActionScript 3.0 站点集合&lt;/strong&gt;

转自（http://bbs.javascript.com.cn/read.p...=1604&amp;fpage=1）ActionScript 3.0 collection 68 sitesActionScript...</description>
		<content:encoded><![CDATA[<p><strong>ActionScript 3.0 站点集合</strong></p>
<p>转自（http://bbs.javascript.com.cn/read.p&#8230;=1604&amp;fpage=1）ActionScript 3.0 collection 68 sitesActionScript&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joa</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-36</link>
		<dc:creator>joa</dc:creator>
		<pubDate>Fri, 04 Nov 2005 11:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-36</guid>
		<description>You will get into trouble if you use characters like the ü.
And for the split method: For sure you can do this. But it is circumstantial to make sure your string really began and ended with a crlf.</description>
		<content:encoded><![CDATA[<p>You will get into trouble if you use characters like the ü.<br />
And for the split method: For sure you can do this. But it is circumstantial to make sure your string really began and ended with a crlf.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Nussbaum</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-35</link>
		<dc:creator>Jason Nussbaum</dc:creator>
		<pubDate>Thu, 03 Nov 2005 20:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-35</guid>
		<description>While it doesn&#039;t stop on a CrLf, you can easily split the returned string, saving you from having to loop through raw bytes creating the string to process...
As for the encoding, I haven&#039;t had any trouble with writeUTFBytes (nor readUTFBytes), but I&#039;ll keep my eyes open for issues with protocols not expecting/sending UTF8/16.</description>
		<content:encoded><![CDATA[<p>While it doesn&#8217;t stop on a CrLf, you can easily split the returned string, saving you from having to loop through raw bytes creating the string to process&#8230;<br />
As for the encoding, I haven&#8217;t had any trouble with writeUTFBytes (nor readUTFBytes), but I&#8217;ll keep my eyes open for issues with protocols not expecting/sending UTF8/16.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joa</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-34</link>
		<dc:creator>joa</dc:creator>
		<pubDate>Thu, 03 Nov 2005 18:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-34</guid>
		<description>FTP and other protocols do not use the UTF-8/UTF-16 encoding.
And does redUTFBytes stop at a crlf? Because this is what I wrote about.
Dispatch an event when the next crlf is reached.</description>
		<content:encoded><![CDATA[<p>FTP and other protocols do not use the UTF-8/UTF-16 encoding.<br />
And does redUTFBytes stop at a crlf? Because this is what I wrote about.<br />
Dispatch an event when the next crlf is reached.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Nussbaum</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-33</link>
		<dc:creator>Jason Nussbaum</dc:creator>
		<pubDate>Thu, 03 Nov 2005 17:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-33</guid>
		<description>Have you tried Socket::readUTFBytes( numBytes:uint ):String?
-&gt; var messageFromServer:String = sock.readUTFBytes( sock.bytesAvailable );

That&#039;s working well for me...</description>
		<content:encoded><![CDATA[<p>Have you tried Socket::readUTFBytes( numBytes:uint ):String?<br />
-&gt; var messageFromServer:String = sock.readUTFBytes( sock.bytesAvailable );</p>
<p>That&#8217;s working well for me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Franto.com Flash blog &#187; Collected links to ActionScript 3.0 examples</title>
		<link>http://blog.joa-ebert.com/2005/10/17/handle-socket-data-depending-on-crlf/comment-page-1/#comment-11</link>
		<dc:creator>Franto.com Flash blog &#187; Collected links to ActionScript 3.0 examples</dc:creator>
		<pubDate>Thu, 27 Oct 2005 08:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.je2050.de/?p=33#comment-11</guid>
		<description>[...] ed Plasma Betaruce (source and example) AS 3 Experiment: Asteroids RocketBoots ( example)   Handle Socket-Data depending on CRLF  (source) Security model and Flash 8.5  [...]</description>
		<content:encoded><![CDATA[<p>[...] ed Plasma Betaruce (source and example) AS 3 Experiment: Asteroids RocketBoots ( example)   Handle Socket-Data depending on CRLF  (source) Security model and Flash 8.5  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

