Célio
Visitor
|
Re:installation on XP - 2006/09/11 16:31
Hi
The best is to leave empty the line
so :
And then flash has a strict crossdomain policy that involves that when accessing the swf at
http://localhost/... the swf MUST connect through xml.connect('localhost'...)
at
http://127.0.0.1/... the swf MUST connect through xml.connect('127.0.0.1'...)
at
http://www.test.com/... the swf MUST connect through xml.connect('www.test.com'...)
at
http://test.com/... the swf MUST connect through xml.connect('test.com'...)
If you want to bypass this, you have to use Crossdomain policy files, or crossdomains in palabre.conf files :
Ex :
in palabre.conf, in corssdomain section, put :
[crossdomain]
alloweddomains = 127.0.0.1 localhost www.test.com test.com
And every domains you may access from.
And in your Flash application, BEFORE connecting, execute :
System.security.loadPolicyFile("xmlsocket://www.test.com:2468");
(www.test.com is to be replaced by your domain name OR public IP address, and 2468 by the port you're running Palabre on.
And last thing, for people to access from the outside, you have to check that your firewall has the 2468 port open.
Have fun
|