[
https://issues.apache.org/jira/browse/COUCHDB-832?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12893792#action_12893792
]
luisbebop commented on COUCHDB-832:
-----------------------------------
I created a patch for this issue. I've implemented the W3C CORS, including
"credentialed" requests.
http://gist.github.com/499002
> Handling HTTP OPTIONS method
> ----------------------------
>
> Key: COUCHDB-832
> URL: https://issues.apache.org/jira/browse/COUCHDB-832
> Project: CouchDB
> Issue Type: Bug
> Components: HTTP Interface
> Affects Versions: 1.0
> Reporter: Stanisław
>
> Method OPTIONS is not allowed, which disables ability for cross-site
> XMLHttpRequest (other than GET) within the browser (see:
> http://www.w3.org/TR/cors)
> Current headers:
> curl -X OPTIONS http://localhost:5984 -v
> ...
> < HTTP/1.1 405 Method Not Allowed
> < Server: CouchDB/1.0.0 (Erlang OTP/R13B)
> < Date: Thu, 22 Jul 2010 17:56:59 GMT
> < Content-Type: text/plain;charset=utf-8
> < Content-Length: 64
> < Cache-Control: must-revalidate
> < Allow: GET,HEAD
> Expected headers:
> HTTP/1.1 200 OK
> Access-Control-Allow-Methods: POST, GET, OPTIONS
> Access-Control-Allow-Headers: X-PINGOTHER
> Stan.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.