<?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: When to use Security.loadPolicyFile(url:String) in your Flex app</title>
	<atom:link href="http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/feed/" rel="self" type="application/rss+xml" />
	<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/</link>
	<description>Anything RIA relevant...</description>
	<lastBuildDate>Fri, 06 Nov 2009 17:57:51 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Мобильный Диспетчер</title>
		<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/#comment-44</link>
		<dc:creator>Мобильный Диспетчер</dc:creator>
		<pubDate>Fri, 06 Nov 2009 17:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://brianmriley.wordpress.com/?p=15#comment-44</guid>
		<description>Anyone know if it&#039;s possible to get cross domain content using LoadXML?</description>
		<content:encoded><![CDATA[<p>Anyone know if it&#8217;s possible to get cross domain content using LoadXML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/#comment-31</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Fri, 31 Jul 2009 14:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://brianmriley.wordpress.com/?p=15#comment-31</guid>
		<description>Hi guys,

About sockets, Flex must read the crossdomain from your socket (so with a different port than classic HTTP)...

From your socket server, you need to detect the first connection and send the crossdomain.xml content, than Flex reconnect to the server and its fine!</description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>About sockets, Flex must read the crossdomain from your socket (so with a different port than classic HTTP)&#8230;</p>
<p>From your socket server, you need to detect the first connection and send the crossdomain.xml content, than Flex reconnect to the server and its fine!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alina</title>
		<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/#comment-26</link>
		<dc:creator>Alina</dc:creator>
		<pubDate>Wed, 29 Apr 2009 17:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://brianmriley.wordpress.com/?p=15#comment-26</guid>
		<description>socket.addEventListener(ProgressEvent.SOCKET_DATA, socket_data_handler);

Different event</description>
		<content:encoded><![CDATA[<p>socket.addEventListener(ProgressEvent.SOCKET_DATA, socket_data_handler);</p>
<p>Different event</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanvir</title>
		<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/#comment-23</link>
		<dc:creator>tanvir</dc:creator>
		<pubDate>Mon, 20 Apr 2009 10:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://brianmriley.wordpress.com/?p=15#comment-23</guid>
		<description>Hey Aryan,
Did you solved your problem yet ????

i am also facing this sort of problem .....

if you solved that plz share the solution here.

If anyone else have any solution or suggestion regarding the aryan problem plz provide it here.</description>
		<content:encoded><![CDATA[<p>Hey Aryan,<br />
Did you solved your problem yet ????</p>
<p>i am also facing this sort of problem &#8230;..</p>
<p>if you solved that plz share the solution here.</p>
<p>If anyone else have any solution or suggestion regarding the aryan problem plz provide it here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aryan</title>
		<link>http://brianmriley.wordpress.com/2008/09/09/when-to-use-securityloadpolicyfileurlstring-in-your-flex-app/#comment-18</link>
		<dc:creator>Aryan</dc:creator>
		<pubDate>Sun, 26 Oct 2008 18:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://brianmriley.wordpress.com/?p=15#comment-18</guid>
		<description>Nice blog dude. helped me a lot in learning flex.
I&#039;ve had this problem for about 2 months now, and still not fixed. It&#039;s related to this post
can you see if u know the solution? apreciate ur help in advance
Server is working fine because it&#039;s been tested with a C# client

Flex ==&gt; Socket?!?!?!?
Flex client connects to my server. (Event.CONNECT fires)
It&#039;s able to send messages to server
It DOESN&#039;T receive any message. (DataEvent.DATA won&#039;t fire)
policy running on IIS (localhost)





the project is on my desktop not on IIS.

Security.allowDomain(&quot;*&quot;);
Security.loadPolicyFile(&quot;http://localhost/crossdomain.xml&quot;);
socket = new XMLSocket(&quot;10.0.0.3&quot; , 8000);
socket.addEventListener(DataEvent.DATA , OnData);
socket.addEventListener(Event.CONNECT , onConnect);
socket.addEventListener(IOErrorEvent.IO_ERROR, OnError);
socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, OnSecurity);
socket.addEventListener(Event.CLOSE, onDisconnect);
socket.connect(&quot;10.0.0.3&quot; , 8000);		

both server and client are on the same machine.
server is on desktop 2.
there is no security error

ANY IDEA WHY I AM NOT ABLE TO RECEIVE DATA THROUGH SOCKET?</description>
		<content:encoded><![CDATA[<p>Nice blog dude. helped me a lot in learning flex.<br />
I&#8217;ve had this problem for about 2 months now, and still not fixed. It&#8217;s related to this post<br />
can you see if u know the solution? apreciate ur help in advance<br />
Server is working fine because it&#8217;s been tested with a C# client</p>
<p>Flex ==&gt; Socket?!?!?!?<br />
Flex client connects to my server. (Event.CONNECT fires)<br />
It&#8217;s able to send messages to server<br />
It DOESN&#8217;T receive any message. (DataEvent.DATA won&#8217;t fire)<br />
policy running on IIS (localhost)</p>
<p>the project is on my desktop not on IIS.</p>
<p>Security.allowDomain(&#8220;*&#8221;);<br />
Security.loadPolicyFile(&#8220;http://localhost/crossdomain.xml&#8221;);<br />
socket = new XMLSocket(&#8220;10.0.0.3&#8243; , 8000);<br />
socket.addEventListener(DataEvent.DATA , OnData);<br />
socket.addEventListener(Event.CONNECT , onConnect);<br />
socket.addEventListener(IOErrorEvent.IO_ERROR, OnError);<br />
socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, OnSecurity);<br />
socket.addEventListener(Event.CLOSE, onDisconnect);<br />
socket.connect(&#8220;10.0.0.3&#8243; , 8000);		</p>
<p>both server and client are on the same machine.<br />
server is on desktop 2.<br />
there is no security error</p>
<p>ANY IDEA WHY I AM NOT ABLE TO RECEIVE DATA THROUGH SOCKET?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
