the crossdomain file is identical(didn't check white spaces) but clientaccesspolicy is different
where it should have been
<allow-from http-methods="*" http-request-headers="*"> <domain uri="http://*"/> <domain uri="https://*"/></allow-from><!--<allow-from http-methods="*"> <domain uri="http://*"/> <domain uri="https://*"/></allow-from>--><grant-to> <resource path="/" include-subpaths="true"/> <!-- test --></grant-to>
it is
<allow-from http-request-headers="*"> <domain uri="*"/> </allow-from> <grant-to> <resource path="/" include-subpaths="true"/> </grant-to>
as you can see domain was changed and also all comments was erased which is strange because in file on my server I've exactly the same file as requested in configuration guide.