up vote 7 down vote favorite
5
share [g+] share [fb]

I am trying to setup the following view on CouchDB

{
"_id":"_design/id",
"_rev":"1-9be2e55e05ac368da3047841f301203d",
"language":"javascript",
    "views":{ "by_id":{
              "map" : "function(doc) { emit(doc.id, doc)}"
        },"from_user_id":{
            "map" : "function(doc) { if (doc.from_user_id) {emit(doc.from_user_id, doc)}}"},
        "from_user":{
            "map" : "function(doc) { if (doc.from_user) {emit(doc.from_user, doc)}}"},
        "to_user_id":{
            "map" : "function(doc) {if (doc.to_user_id){ emit(doc.to_user_id, doc)}}"},
        "to_user":{
            "map" : "function(doc) {if (doc.to_user){ emit(doc.to_user, doc)}}" },
        "max_id":{
         "map" : "function(doc) { if (doc.id) {emit(doc._id, eval(doc.id))}}",  
         "reduce" :"function(key,value) { a = value[0]; for (i=1; i <value.length; ++i){a =    Math.max(a,value[i])} return a}"
        }
    }
}

when I try to 'PUT' this using curl:

 curl -X PUT -d keys.json  $CDB/_design/id
 {"error":"bad_request","reason":"invalid UTF-8 JSON"}

I know it's not invalid JSON, because I tested it using the 'json' library built into Python 2.6, it loads fine. JS screw ups give me the error 'must evaluate to a function'

I have checked the file with od, there are no hidden control chars, my system is set to UTF-8. I'm using CouchDB version 0.10.1

What else might be wrong with it?

link|improve this question

Is it possible that keys.json is encoded in a 16 bit encoding such as UTF-16 or UCS-2? – Joachim Sauer Mar 17 '10 at 11:42
As an FYI, your JSON parses fine in Chrome, Internet Explorer and Firefox. – Andy E Mar 17 '10 at 11:43
@Joachim_Sauer file keys.json, shows it as 'ascii text', If checked with 'od -c' there are no horror control chars, my system defaults to utf-8, I'm baffled – Chris Huang-Leaver Mar 17 '10 at 11:47
curl -v helps because it dumps the actual request send to the server – ordnungswidrig Nov 10 '10 at 10:59
feedback

4 Answers

up vote 10 down vote accepted

@titanoba hinted at the problem:

The -d option of curl expects the actual data as the argument!

If you want to provide the data in a file, you need to prefix it with @:

curl -X PUT -d @keys.json  $CDB/_design/id
link|improve this answer
I knew this I just forgot. slaps head – Chris Huang-Leaver Mar 17 '10 at 12:56
Thanks for the help – Chris Huang-Leaver Mar 17 '10 at 12:59
+1: One of those answers that keeps giving and giving (and saving me time.) Thanks. – Stu Thompson May 3 '11 at 14:33
feedback

It might be necessary to put your JSON into single quotes:

curl -vX PUT http://localhost:5984/dbname/docid -d '{"foo" : "bar"}'

works for me but

curl -vX PUT http://localhost:5984/dbname/docid -d {"foo" : "bar"}

throws the error you mention. I guess the shell somehow interferes with the data you send when you omit the single quotes.

edit: I'm using bash.

link|improve this answer
feedback

Did you update CouchDB from source recently? If so, be sure to remove all old files.

link|improve this answer
feedback

The reason

curl -vX PUT http://localhost:5984/dbname/docid -d {"foo" : "bar"}

Doesn't work is that the quotes are interpolated by the shell using the single quotes escapes the quotes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.