F
fredhamelin
Guest
Hi, I have been trying to use CORS with my REST service and it seems to work once I'm authenticated. But if I try to authenticate via a cross-domain ajax call, the preflight OPTIONS request returns a 403 Forbidden error. Here is my current config for the OECORSFilter : b:bean id="OECORSFilter" class="com.progress.rest.security.OECORSFilter" b
roperty name="allowAll" value="false" / b
roperty name="allowDomains" value="*" / b
roperty name="allowMethods" value="GET,POST,PUT,DELETE,OPTIONS" / b
roperty name="messageHeaders" value="x-requested-with" / b
roperty name="supportCredentials" value="true" / /b:bean Is there a way to authenticate from another domain or I absolutely have to use the login form in static/auth/login.html ?
Continue reading...
Continue reading...