Crossdomain and file XML

Hello,
I’ve two Web Server:
-server 1 with IP 192.168.0.50;
-server 2 with IP 192.168.0.249;
both servers are on the same network through a router.
In the server 1 I’ve a html page linked to a swf file that attempt to load a xml
file contained in server 2 root.
In the server_1 root I’ve the swf file:

System.security.loadPolicyFile(“http://192.168.0.250/crossdomain.xml”);
System.security.allowInsecureDomain("*");
listXML1 = new XML();
listXML1.ignoreWhite = true;
listXML1.onLoad = makeArray;
listXML1.load(“http://192.168.0.250/var.xml”);
function makeArray(success) {…

In the server_2 root I’ve the crossdomain.xml:

<?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="*" secure=“false”/>
<site-control permitted-cross-domain-policies=“all”/>
</cross-domain-policy>

and the var.xml file.
The problem is that the swf file can’t read the var.xml file.
May someone tell me where is the problem ?
Thank’s a lot.
cl@udio