Topic History of: installation on XP Max. showing the last posts - (Last post first)
Author
Message
Célio
It's weird that it does not work, but your way is fine too as soon as you do the XML.connect () to an IP where the crossdomain.xml file is available :)
The palabre way is meant to work for Palabre dedicated servers where no HTTP server is installed.
Have fun !
fly
don't work :(
I try another way :
1) Palabre is runing on server with IP 82.60.155.96
if I have Palabre Server that run on one computer with public IP 82.60.155.96,
can I put the PalabreChat.swf on another server www.dominian.com and call the service on IP 82.60.155.96 ?
if yes what configuration I have to do ?
thanks
fly
many thanks :)
Célio
Hi
The best is to leave empty the line
Code:
ip = 127.0.1 ...
so :
Code:
ip =
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 :