You don't need frames to view this website. Flash communication server. Flash mx xml socket server.
Home
Main Menu
Home
- - - - - - -
What is Palabre ?
Features
News
FAQ
Forum
DEMO
- - - - - - -
Downloads !
Browse SVN
- - - - - - -
Search
Contact Us
- - - - - - -
Sourceforge Project Page
Python
Links




 
Download Palabre Flash Xml Socket Server DOWNLOAD Download Palabre Flash Xml Socket Server FORUM Download Palabre Flash Xml Socket Server FAQ Download Palabre Flash Xml Socket Server WHAT IS IT
 



Using Palabre ? Coming here for Support ? Please consider making an (even small) donation :)
Palabre Forum  


::post new topic::
Cross Domain Problems - 2008/05/07 07:34 I'm running the swf on hamachi. IP = 5.209.131.8 / Port = 2568
The game is located on http://5.209.131.8/Lawl.swf but you can only see it if you're connected to my hamachi network.

Palabre.conf:
alloweddomains = http://5.209.131.8/

Flash:
sock.connect("5.209.131.8", 2568);
System.security.loadPolicyFile("xmlsocket://5.209.131.8:2568")

I also have tried like the FAQs said but i couldn't get it to work.

Code:

 System.security.loadPolicyFile("xmlsocket://5.209.131.8:2568") sock.connect("http://5.209.131.8/Lawl.swf",2568) sock.onConnect = function (success) {     if (success)     {         login_btn.enabled true;         res_txt.text "Connection Established!";     }     else     {         res_txt.text "Connection failed...";         sock.connect("5.209.131.8"2568);     }  };


I can only login after it fails to connect to web and connects with " sock.connect("5.209.131.8", 2568);"
When i run it on web however it doesnt work at all. Any one can help?
  reply | quote
Re:Cross Domain Problems - 2008/05/12 16:51 John,

I'm guessing you need to get rid of this:

http://

Such that your Palabre config looks like this:

Code:

 alloweddomains 5.209.131.8

  reply | quote
::post new topic::