Hi
When trying to authenticate in my app via a browser comming from another domain i get this errror.
XMLHttpRequest cannot load http://moss-strs.eim.net:8080/gateway/v1/auth. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://moss-strs:8080' is therefore not allowed access. (index):1
I tried to add a crossdomain.xml :
<?xml version="1.0" ?>
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
Does anyone know how to solve this?