Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

my friend built an AS3 game in IMAC, and he sent game file to me while i'm using win7 system. after complete configuration, it came a problem:"NetConnection.Call.BadVersion" in console of Flex. It works fine when open .php in localhost/amfphp, and the URL in actionscript is correct, and info to connect to mysql is also correct.

can anyone help me? please?

I did google search, the only solution is to change some statements in gateway.php, but that's for 1.9 version, mine is 2.1

share|improve this question
The BadVersion error usually happens if the server is returning something that Flex can't interpret as AMF. Have you tried using a http-sniffer, e.g. Charles (charlesproxy.com) or Service Capture (kevinlangdon.com/serviceCapture) to see what really get's returned from the server? Also, is all of this now running on your localhost or are you experiencing the problems on a production server? – Jens Wegar Jul 4 '12 at 6:03
You should not change anything in gateway.php – Cninroh Jul 8 '12 at 11:44

1 Answer

It may be a crossdomain problem. You just try the following xml code

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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