I am using Angular.js with AppEngine on Java.
For every HTTP request, Angular.js issues an OPTIONS request before actual request, which returns an HTTP 404 error for me.
Can anybody please tell me why?
In AppEngine how to enable the configuration for OPTIONS method?
edit: I created a filter to handle OPTIONS request. Now I add the Allow header with GET, POST, DELETE, PUT, OPTIONS, HEAD as value and respond with status code 200. But still it shows 404.