You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Adam Kocoloski (JIRA)" <ji...@apache.org> on 2009/11/02 01:34:59 UTC

[jira] Commented: (COUCHDB-552) "content-type" header behavior from external processes is poorly defined

    [ https://issues.apache.org/jira/browse/COUCHDB-552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12772394#action_12772394 ] 

Adam Kocoloski commented on COUCHDB-552:
----------------------------------------

Hi Christopher, this should already be fixed in trunk.  If you're building from source can you svn up and try again?

I didn't backport the fix to the 0.10 branch.  If folks think the bug is serious enough we can certainly include the fix in 0.10.1.

> "content-type" header behavior from external processes is poorly defined
> ------------------------------------------------------------------------
>
>                 Key: COUCHDB-552
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-552
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Infrastructure
>    Affects Versions: 0.11
>         Environment: CentOS5.3, Erlang R12
>            Reporter: Christopher O'Connell
>            Assignee: Adam Kocoloski
>            Priority: Minor
>             Fix For: 0.10.1
>
>
> When returning headers from an external process, the behavior depends on capitalization, and is radically different in each case.
> Consider the external process return
> a: { "code":200, "json": { "hello":"world" }, "headers": {} }.
> If returned as (a), the server serves { "hello":"world" } with header "Content-Type: application/json".
> If the json is modified to 
> b: { "code":200, "json": { "hello":"world" }, "headers":  {"Content-type":"text/plain"} }
> c: { "code":200, "json": { "hello":"world" }, "headers":  {"content-type":"text/plain"} }
> If returned as (b) or (c), the server serves { "hello":"world" } with header "Content-Type: text/plain, application/json".
> If the json is modified to
> d: c: { "code":200, "json": { "hello":"world" }, "headers":  {"Content-Type":"text/plain"} }
> If returned as (d), the server serves { "hello":"world" } with header "Content-Type: text/plain".
> There should be one well defined behavior when a "content-type" header is returned from an external process.
> To reproduce this error, setup an external process and return json strings as specified above.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.