In my flex application, the war is packaged with crossdomain.xml policy file.
<?xml version="1.0" encoding="UTF-8"?>
<cross-domain-policy>
<allow-access-from domain="*" to-ports="*"/>
</cross-domain-policy>
The entries mentioned here means the SWF file from any/all domain can access the server data.
My question here is
the crossdomain.xml necessarily need to be there for accessing the server ?
What happens if we don't have a crossdomain.xml policy file while the SWF file is accessing the server for data ?
Is there any default restrictions the server may have to access its data if we don't place a crossdomain.xml ?
Kindly, Please help me with your answers.