I want to use XMLSocekt between localhost and example.com.

SWF in localhost try to connect example.com, SecurityError occured.

How can I use XMLSocekt between localhost and example.com?

link|improve this question
What is your SecurityError? – John Giotta Dec 14 '10 at 16:04
[SecurityErrorEvent type="securityError" bubbles=false cancelable=false eventPhase=2 text="Error #2048"] – certst Dec 14 '10 at 16:05
Sorry, SWF is in local(C:¥...) – certst Dec 14 '10 at 16:45
check Global Security Settings panel if the problem is with local SWF connecting the web – www0z0k Dec 14 '10 at 19:42
feedback

1 Answer

You are accessing a example.com domain from localhost domain. This is called crossdomain communication.

Remote server (in this case example.com) needs to respond with crossdomain.xml allowing Flash running from localhost domain to connect.

When Flash tries to load crossdomain from XMLSocket, it sends <policy-file-request/> to the server. Server should then respond with crossodomain.xml

This crossdomain allows every remote comunication:

<?xml version="1.0"?>
<cross-domain-policy>
  <allow-access-from domain="*" to-ports="*"/>
</cross-domain-policy>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.