How to make my PHP Socket Server send a policy file to flash clients? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:48:29Z http://stackoverflow.com/feeds/question/1082676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1082676/how-to-make-my-php-socket-server-send-a-policy-file-to-flash-clients 1 How to make my PHP Socket Server send a policy file to flash clients? Tom 2009-07-04T17:52:46Z 2009-08-29T02:19:08Z <p>My flash game needs to connect to my PHP Socket Server. Because of security things, a policy file has to be send to the flash client when it tries to connect.</p> <p>The following is what I've done.</p> <p>In Actionscript / Flex 3 / Flash:</p> <pre><code>Security.loadPolicyFile("http://[SERVER.IP]:9000/crossdomain.xml"); socket.connect(hostName, port); //connect to the socket [rest of original code] </code></pre> <p>To make the socket server respond on the request, I added the following to the server:</p> <pre><code>elseif (preg_match("/policy-file-request/i", $buffer) or preg_match("/crossdomain/i", $buffer)) { socket_write($socket, '&lt;?xml version="1.0"?&gt;&lt;cross-domain-policy&gt;&lt;site-control permitted-cross-domain-policies="all"/&gt;&lt;allow-access-from domain="*" to-ports="9000" /&gt;&lt;/cross-domain-policy&gt;'); unset($read_sockets[array_search($socket, $read_sockets)]); socket_shutdown($socket, 2); socket_close($socket); </code></pre> <p>I however get the following error: "Ignoring policy file at (URL) due to missing Content-Type." So, I tried to fix this by adding a header right above my xml code:</p> <pre><code>socket_write($socket, "Content-Type: text/xml\n"); </code></pre> <p>Unfortunately, I still get the same error. Am I giving the content type in a wrong way?</p> http://stackoverflow.com/questions/1082676/how-to-make-my-php-socket-server-send-a-policy-file-to-flash-clients/1082703#1082703 1 Answer by Mauricio for How to make my PHP Socket Server send a policy file to flash clients? Mauricio 2009-07-04T18:11:16Z 2009-07-04T18:11:16Z <p>Try it with \r\n after the Content-Type.</p> <pre><code>socket_write($socket, "Content-Type: text/xml\r\n"); </code></pre> <p>Shouldn't you be using a xmlsocket on port 843?</p> http://stackoverflow.com/questions/1082676/how-to-make-my-php-socket-server-send-a-policy-file-to-flash-clients/1082729#1082729 2 Answer by truppo for How to make my PHP Socket Server send a policy file to flash clients? truppo 2009-07-04T18:21:04Z 2009-07-04T18:21:04Z <p>You need to return a valid HTTP response if you are going to use:</p> <pre><code>Security.loadPolicyFile("http://[SERVER.IP]:9000/crossdomain.xml"); </code></pre> <p>If the flash is going to connect to your PHP socket server, just skip the above line and it will try the port itself and expect raw data instead of a HTTP response.</p> http://stackoverflow.com/questions/1082676/how-to-make-my-php-socket-server-send-a-policy-file-to-flash-clients/1082733#1082733 2 Answer by back2dos for How to make my PHP Socket Server send a policy file to flash clients? back2dos 2009-07-04T18:23:25Z 2009-07-04T18:23:25Z <p>you can load the policyfile from any port of the server using Security.loadPolicyFile() ... maybe you should simply serve it per http on port 80, load it from there and then connect to the server ...</p> <p>also, by default, i think flashplayer 9 (upwards from some minor version) sends a policyfile request to port 943 by default ... so you might put a server there, to do that ...</p> <p>a little side note: PHP was never designed for socket servers and is not very good at that ... if you can, try using Java, or <a href="http://nekovm.org/" rel="nofollow">NekoVM</a>, that you can use with <a href="http://haxe.org" rel="nofollow">haXe</a> ... also haXe remoting, as well as ThreadedRemotingServer might be of interest to you ... there's some good and clear tutorials on the haXe site ...</p> http://stackoverflow.com/questions/1082676/how-to-make-my-php-socket-server-send-a-policy-file-to-flash-clients/1085713#1085713 1 Answer by Mauricio for How to make my PHP Socket Server send a policy file to flash clients? Mauricio 2009-07-06T06:48:50Z 2009-08-29T02:19:08Z <p>Try sending this:</p> <pre><code>HTTP/1.1 200 OK\r\nContent-Type: text/xml\r\n\r\n </code></pre> <p>Make sure nothing is sent before this. Also, send a <code>\r\n</code> before the socket is closed.</p>