<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Javascript-Flash socket bridge with haxe</title>
	<atom:link href="http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/feed/" rel="self" type="application/rss+xml" />
	<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/</link>
	<description>Just another tech mumbo-jumbo weblog</description>
	<lastBuildDate>Wed, 28 Oct 2009 14:31:27 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-111</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Wed, 28 Oct 2009 14:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-111</guid>
		<description>Are you sure the function is defined when the flash clip tries to call it? Can you post example code reproducing the problem?</description>
		<content:encoded><![CDATA[<p>Are you sure the function is defined when the flash clip tries to call it? Can you post example code reproducing the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dreea</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-110</link>
		<dc:creator>dreea</dc:creator>
		<pubDate>Wed, 28 Oct 2009 13:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-110</guid>
		<description>Thank you for your answer but I don&#039;t think that is the problem. I got the exact code from here http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/ and it was not working. I tried to simplify it in order to get at the bottom of the problem and the following is still not working:

trace(ExternalInterface.available);
if (flash.Lib.current.loaderInfo.parameters.onloadcallback != null)
{
trace(&quot;callback function: &quot;+flash.Lib.current.loaderInfo.parameters.onloadcallback);
ExternalInterface.call(&quot;test&quot;);
}
trace(&quot;Hello World&quot;);

In the html page the test function is defined as follows:

function test() {
    alert(&quot;on load callback&quot;);
}


Could this issue be related with the flash player version?
Thanks</description>
		<content:encoded><![CDATA[<p>Thank you for your answer but I don&#8217;t think that is the problem. I got the exact code from here <a href="http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/" rel="nofollow">http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/</a> and it was not working. I tried to simplify it in order to get at the bottom of the problem and the following is still not working:</p>
<p>trace(ExternalInterface.available);<br />
if (flash.Lib.current.loaderInfo.parameters.onloadcallback != null)<br />
{<br />
trace(&#8220;callback function: &#8220;+flash.Lib.current.loaderInfo.parameters.onloadcallback);<br />
ExternalInterface.call(&#8220;test&#8221;);<br />
}<br />
trace(&#8220;Hello World&#8221;);</p>
<p>In the html page the test function is defined as follows:</p>
<p>function test() {<br />
    alert(&#8220;on load callback&#8221;);<br />
}</p>
<p>Could this issue be related with the flash player version?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-109</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Wed, 28 Oct 2009 13:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-109</guid>
		<description>The callback must be a function name that is available on the global javascript scope (window).

See http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/test.html for an example.</description>
		<content:encoded><![CDATA[<p>The callback must be a function name that is available on the global javascript scope (window).</p>
<p>See <a href="http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/test.html" rel="nofollow">http://ionel-whatever-code.googlecode.com/svn/trunk/HaxeSocketBridge/test.html</a> for an example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dreea</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-108</link>
		<dc:creator>dreea</dc:creator>
		<pubDate>Wed, 28 Oct 2009 12:11:32 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-108</guid>
		<description>Hello

I have a problem getting your example to work. I am not familiar with haxe or flash, but it seems like the ExternalInterface&#039;s methods are not working. I reduced the main function to the following lines of code 

trace(ExternalInterface.available);
if (flash.Lib.current.loaderInfo.parameters.onloadcallback != null)
 {
   trace(&quot;callback function: &quot;+flash.Lib.current.loaderInfo.parameters.onloadcallback);
   ExternalInterface.call(&quot;document.title = &#039;Hello World&#039;&quot;);
 }
trace(&quot;Hello World&quot;);

and everything before ExtrenalInterface.call is being outputed, but &quot;Hello World&quot; is not unless ExternalInterface.call is commented. The same issue occurs when trying to use ExternalInterface.addCallback. Can you please point me what I am missing/doing wrong?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>I have a problem getting your example to work. I am not familiar with haxe or flash, but it seems like the ExternalInterface&#8217;s methods are not working. I reduced the main function to the following lines of code </p>
<p>trace(ExternalInterface.available);<br />
if (flash.Lib.current.loaderInfo.parameters.onloadcallback != null)<br />
 {<br />
   trace(&#8220;callback function: &#8220;+flash.Lib.current.loaderInfo.parameters.onloadcallback);<br />
   ExternalInterface.call(&#8220;document.title = &#8216;Hello World&#8217;&#8221;);<br />
 }<br />
trace(&#8220;Hello World&#8221;);</p>
<p>and everything before ExtrenalInterface.call is being outputed, but &#8220;Hello World&#8221; is not unless ExternalInterface.call is commented. The same issue occurs when trying to use ExternalInterface.addCallback. Can you please point me what I am missing/doing wrong?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mario</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-100</link>
		<dc:creator>mario</dc:creator>
		<pubDate>Fri, 19 Jun 2009 03:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-100</guid>
		<description>thx...any ideia to improve security and encryption...?</description>
		<content:encoded><![CDATA[<p>thx&#8230;any ideia to improve security and encryption&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-99</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Wed, 17 Jun 2009 11:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-99</guid>
		<description>Yeah use it however you want. I will add a MIT license text in the source code so there won\&#039;t be any confusion.</description>
		<content:encoded><![CDATA[<p>Yeah use it however you want. I will add a MIT license text in the source code so there won\&#8217;t be any confusion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mario</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-98</link>
		<dc:creator>mario</dc:creator>
		<pubDate>Wed, 17 Jun 2009 10:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-98</guid>
		<description>hi, this really helpme out, but Ionel, please tell me what kinf of licence is this under? can i use it in my comercial site?
other thing, i dont want people to see so direct my ip and port adress i know theres no point on hiding it because the one who wants to know it knows it esaly... but we are not all geeks....:-) soo can i modify the code to hide it?</description>
		<content:encoded><![CDATA[<p>hi, this really helpme out, but Ionel, please tell me what kinf of licence is this under? can i use it in my comercial site?<br />
other thing, i dont want people to see so direct my ip and port adress i know theres no point on hiding it because the one who wants to know it knows it esaly&#8230; but we are not all geeks&#8230;.:-) soo can i modify the code to hide it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fillest</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-97</link>
		<dc:creator>fillest</dc:creator>
		<pubDate>Tue, 12 May 2009 15:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-97</guid>
		<description>My policy file - http://pastebin.ca/1420519 , but also i tried different params

&gt;Are you sure you serving the policy file right ?
Yes, i&#039;m sure.. At first time i used example python server from http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html but then i wrote my own on erlang and experimented a lot. Also i installed debug flash player and set up logging, it produces little more info but still clueless..
I also wrote another server to test client with, instead of simply connecting to the same apache that serves page-with-client. Some results:
While connected, there is no error, and it raises after about 15 sec after server closes socket (notable that &quot;close&quot; event is raised by flash as expected). If flash closes socket, error doesnt rise. It seems that sometimes error doesnt rise at all.. To sum up, for disconnection i can send &quot;command&quot; to client that it should close the socket. Bad solution, but it works for the present..
I&#039;ll experiment more and post if get any results..</description>
		<content:encoded><![CDATA[<p>My policy file &#8211; <a href="http://pastebin.ca/1420519" rel="nofollow">http://pastebin.ca/1420519</a> , but also i tried different params</p>
<p>&gt;Are you sure you serving the policy file right ?<br />
Yes, i&#8217;m sure.. At first time i used example python server from <a href="http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html" rel="nofollow">http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html</a> but then i wrote my own on erlang and experimented a lot. Also i installed debug flash player and set up logging, it produces little more info but still clueless..<br />
I also wrote another server to test client with, instead of simply connecting to the same apache that serves page-with-client. Some results:<br />
While connected, there is no error, and it raises after about 15 sec after server closes socket (notable that &#8220;close&#8221; event is raised by flash as expected). If flash closes socket, error doesnt rise. It seems that sometimes error doesnt rise at all.. To sum up, for disconnection i can send &#8220;command&#8221; to client that it should close the socket. Bad solution, but it works for the present..<br />
I&#8217;ll experiment more and post if get any results..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-95</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Thu, 07 May 2009 21:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-95</guid>
		<description>How does your policy file look like ?
 
Are you sure you serving the policy file right ? (that means send the xml, close the connection -or- prepend a null char and flash will close the connection. see: http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7c60.html )

Might want to try fetching the policy file yourself (eg, FlashSocket.loadPolicyFile(&quot;xmlsocket://localhost:843&quot;); )

Still doesn&#039;t explain why you still get the response and the security error though ...</description>
		<content:encoded><![CDATA[<p>How does your policy file look like ?</p>
<p>Are you sure you serving the policy file right ? (that means send the xml, close the connection -or- prepend a null char and flash will close the connection. see: <a href="http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7c60.html" rel="nofollow">http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7c60.html</a> )</p>
<p>Might want to try fetching the policy file yourself (eg, FlashSocket.loadPolicyFile(&#8220;xmlsocket://localhost:843&#8243;); )</p>
<p>Still doesn&#8217;t explain why you still get the response and the security error though &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: filllest</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-94</link>
		<dc:creator>filllest</dc:creator>
		<pubDate>Thu, 07 May 2009 18:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-94</guid>
		<description>eer, no, how can i get it? ) i&#039;m totally new to flash and haxe
i put at the beginning of SocketBridge::connect this:
ExternalInterface.call( &quot;(function(){alert(&#039;called ::connect&#039;);})&quot;);
but it alerts only once when it&#039;s expected</description>
		<content:encoded><![CDATA[<p>eer, no, how can i get it? ) i&#8217;m totally new to flash and haxe<br />
i put at the beginning of SocketBridge::connect this:<br />
ExternalInterface.call( &#8220;(function(){alert(&#8216;called ::connect&#8217;);})&#8221;);<br />
but it alerts only once when it&#8217;s expected</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-93</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Thu, 07 May 2009 10:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-93</guid>
		<description>Do you have a traceback for that last error?</description>
		<content:encoded><![CDATA[<p>Do you have a traceback for that last error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: filllest</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-92</link>
		<dc:creator>filllest</dc:creator>
		<pubDate>Thu, 07 May 2009 04:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-92</guid>
		<description>Hello and thanks much, good job, everything works fine, but i&#039;ve caught some strange behaviour.
I open localhost/test.html, flash successfuly gets policy file (i have a daemon on 843 port), socket connects to localhost:80, gets and prints content, server closes connection, i get all expected debug alerts. But then, after about 15 seconds, there&#039;s a 2048 security error. o_O
It looks like client tries to connect one more time to some different place (where?..) and fails to get policy file or whatever, with timeout. I&#039;ve looked through the code, recompiled, tried &gt;1024 port, no effect..
win xp sp3, differect browsers
Thanks</description>
		<content:encoded><![CDATA[<p>Hello and thanks much, good job, everything works fine, but i&#8217;ve caught some strange behaviour.<br />
I open localhost/test.html, flash successfuly gets policy file (i have a daemon on 843 port), socket connects to localhost:80, gets and prints content, server closes connection, i get all expected debug alerts. But then, after about 15 seconds, there&#8217;s a 2048 security error. o_O<br />
It looks like client tries to connect one more time to some different place (where?..) and fails to get policy file or whatever, with timeout. I&#8217;ve looked through the code, recompiled, tried &gt;1024 port, no effect..<br />
win xp sp3, differect browsers<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: socketBridge: Flash - Javascript Socket Bridge &#187; Matt Haynes - Programming &#38; Tech Blog</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-91</link>
		<dc:creator>socketBridge: Flash - Javascript Socket Bridge &#187; Matt Haynes - Programming &#38; Tech Blog</dc:creator>
		<pubDate>Tue, 05 May 2009 20:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-91</guid>
		<description>[...] Update: 5 May 2009 This post has generated a (relatively) large amount of interest so I feel I should point out the ionel is also hosting his improved version of the socketBridge. It has a nicer OO interface and might solve some issues with the javascript callbacks and setTimeouts. Might be worth a peek for all those interested: http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Update: 5 May 2009 This post has generated a (relatively) large amount of interest so I feel I should point out the ionel is also hosting his improved version of the socketBridge. It has a nicer OO interface and might solve some issues with the javascript callbacks and setTimeouts. Might be worth a peek for all those interested: <a href="http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/" rel="nofollow">http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-81</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Fri, 13 Mar 2009 22:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-81</guid>
		<description>Drats! wordpress removed it (was some xml markup). Here is it: http://code.google.com/p/ionel-whatever-code/wiki/FlashSocket</description>
		<content:encoded><![CDATA[<p>Drats! wordpress removed it (was some xml markup). Here is it: <a href="http://code.google.com/p/ionel-whatever-code/wiki/FlashSocket" rel="nofollow">http://code.google.com/p/ionel-whatever-code/wiki/FlashSocket</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jean-michel</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-80</link>
		<dc:creator>jean-michel</dc:creator>
		<pubDate>Fri, 13 Mar 2009 16:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-80</guid>
		<description>thanks again 
you are going to think i am stupid :)
for the moment i want to test on &quot;localhost&quot; but of course i use a browser to call my htm file 
i have try to put both files sock.htm and socket_bridge.swf on the trusted files list and even the whole directory

no change  

 in the second case if i use a service listening on  843 
you say i have to send a string like this : but i dont see any string 
PS i am under linux</description>
		<content:encoded><![CDATA[<p>thanks again<br />
you are going to think i am stupid :)<br />
for the moment i want to test on &#8220;localhost&#8221; but of course i use a browser to call my htm file<br />
i have try to put both files sock.htm and socket_bridge.swf on the trusted files list and even the whole directory</p>
<p>no change  </p>
<p> in the second case if i use a service listening on  843<br />
you say i have to send a string like this : but i dont see any string<br />
PS i am under linux</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-79</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Fri, 13 Mar 2009 08:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-79</guid>
		<description>Trusted locations work only for local files, eg: your url is like &quot;file:///c:/bla/bla.html&quot;

If you are loading the page from a http webserver you need to have a additional service there listening on 843 and sending a string like this on each connection:
     
      
       
    
assuming you want to accept connections on jmg78.hd.free.fr from any domain on port 80.</description>
		<content:encoded><![CDATA[<p>Trusted locations work only for local files, eg: your url is like &#8220;file:///c:/bla/bla.html&#8221;</p>
<p>If you are loading the page from a http webserver you need to have a additional service there listening on 843 and sending a string like this on each connection:</p>
<p>assuming you want to accept connections on jmg78.hd.free.fr from any domain on port 80.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jean-michel</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-78</link>
		<dc:creator>jean-michel</dc:creator>
		<pubDate>Fri, 13 Mar 2009 08:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-78</guid>
		<description>sorry to disturb you again ionel and thank you for your former answer .
but i have seen the place in adobe page to give the path for a trusted location
i have given the place where socket_bridge.swf is , but no change i have still the 
same behaviour security error #2048
 in fact i think i don&#039;t understand at all what means a trusted location  ???
i have read a lot of thing but ...
i give you the location on my PC http://jmg78.hd.free.fr/sock.htm</description>
		<content:encoded><![CDATA[<p>sorry to disturb you again ionel and thank you for your former answer .<br />
but i have seen the place in adobe page to give the path for a trusted location<br />
i have given the place where socket_bridge.swf is , but no change i have still the<br />
same behaviour security error #2048<br />
 in fact i think i don&#8217;t understand at all what means a trusted location  ???<br />
i have read a lot of thing but &#8230;<br />
i give you the location on my PC <a href="http://jmg78.hd.free.fr/sock.htm" rel="nofollow">http://jmg78.hd.free.fr/sock.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ionel Maries</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-77</link>
		<dc:creator>Ionel Maries</dc:creator>
		<pubDate>Tue, 10 Mar 2009 07:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-77</guid>
		<description>@jean-michel, If you are testing locally you need to add a path for a trusted location in the security manager. Otherwise you usually need to have a proper policy file serving daemon running on port 843 on the servers you are making socket connections to.</description>
		<content:encoded><![CDATA[<p>@jean-michel, If you are testing locally you need to add a path for a trusted location in the security manager. Otherwise you usually need to have a proper policy file serving daemon running on port 843 on the servers you are making socket connections to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jean-michel</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-76</link>
		<dc:creator>jean-michel</dc:creator>
		<pubDate>Tue, 10 Mar 2009 07:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-76</guid>
		<description>nice every is compiled but i got a security alert 
and i don&#039;t see what i have to set in the security settings from adobe 
thank you for your nice example</description>
		<content:encoded><![CDATA[<p>nice every is compiled but i got a security alert<br />
and i don&#8217;t see what i have to set in the security settings from adobe<br />
thank you for your nice example</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ionelmc</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-68</link>
		<dc:creator>ionelmc</dc:creator>
		<pubDate>Thu, 11 Dec 2008 12:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-68</guid>
		<description>Can you post sample code proving the problem ?</description>
		<content:encoded><![CDATA[<p>Can you post sample code proving the problem ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-67</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 11 Dec 2008 12:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-67</guid>
		<description>Hm ya there seems to be multi-connection support, but how can I use it? I thought I could do it by initiating another FlashSocket Object. But it&#039;s not working. my first object is getting killed or better the connection gets resetted.

Thanks,
Chris</description>
		<content:encoded><![CDATA[<p>Hm ya there seems to be multi-connection support, but how can I use it? I thought I could do it by initiating another FlashSocket Object. But it&#8217;s not working. my first object is getting killed or better the connection gets resetted.</p>
<p>Thanks,<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matth</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-62</link>
		<dc:creator>matth</dc:creator>
		<pubDate>Sat, 29 Nov 2008 18:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-62</guid>
		<description>Oh, my bad, scrap that last comment. I see there is support for multiple connections in the haxe source.</description>
		<content:encoded><![CDATA[<p>Oh, my bad, scrap that last comment. I see there is support for multiple connections in the haxe source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matth</title>
		<link>http://ionelmc.wordpress.com/2008/11/29/flash-socket-bridge-with-haxe/#comment-61</link>
		<dc:creator>matth</dc:creator>
		<pubDate>Sat, 29 Nov 2008 18:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://ionelmc.wordpress.com/?p=80#comment-61</guid>
		<description>This is a much nicer javascript interface to the SWF, glad to see someone else getting involved on this problem too.

Can&#039;t see how you&#039;d get multiple concurrent connections with this SWF though, as there is only ever one instance of window.FlashSocket._bridge. I know that&#039;s an edge case though.

Good work and a nice pattern to remember in future.</description>
		<content:encoded><![CDATA[<p>This is a much nicer javascript interface to the SWF, glad to see someone else getting involved on this problem too.</p>
<p>Can&#8217;t see how you&#8217;d get multiple concurrent connections with this SWF though, as there is only ever one instance of window.FlashSocket._bridge. I know that&#8217;s an edge case though.</p>
<p>Good work and a nice pattern to remember in future.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
