Hi Thomas, The JSON encoder/decoder changed between 1.1 and 1.2. Both of the results you show are valid JSON (and equivalent). If you could describe the processing problems you encountered, perhaps we can help more.
B. On 3 Jul 2012, at 13:41, [email protected] wrote: > Dear list, > > we have problems with the new couchdb version 1.2.0: > > As a minimal example we created a database on a 1.1.1 > (servername: a73435) server and one on 1.2.0 (servername:a73434). > > Than we create a document in each database containing a string with a > Umlaut (ä). > > If we now replicate the databases one in each other we get from version > 1.1.1: > > curl http://a73435/umlauttest/bc8616f8f77089e2550d4930920006f0 > { > "_id":"bc8616f8f77089e2550d4930920006f0", > "_rev":"2-cd5eb92931214669f3f0df062c17f6ea", > "test":"S\u00e4tze", > ^^^^^^ > "server":"a73435" > } > > curl http://a73435/umlauttest/5e5b01c479d58c493284992cb1000431 > { > "_id":"5e5b01c479d58c493284992cb1000431", > "_rev":"2-9c9c2b2283c9853528dae73b2856ec45", > "test":"S\u00e4tze", > ^^^^^^ > "server":"a73434" > } > > however, from 1.2.0 we receive: > > curl http://a73434/umlauttest/bc8616f8f77089e2550d4930920006f0 > { > "_id":"bc8616f8f77089e2550d4930920006f0", > "_rev":"2-cd5eb92931214669f3f0df062c17f6ea", > "test":"Sätze", > ^^^^^^ > "server":"a73435" > } > > curl http://a73434/umlauttest/5e5b01c479d58c493284992cb1000431 > { > "_id":"5e5b01c479d58c493284992cb1000431", > "_rev":"2-9c9c2b2283c9853528dae73b2856ec45", > "test":"Sätze", > ^^^^^^ > "server":"a73434" > } > > in other words two different results, disturbing our process chain. > If we replicate between two 1.1.1 instances we get identical documents > (with \u00e4) which is fine for us > > Don't you think that the first result (result of 1.1.1) is more json like. > > > regards from Berlin > Thomas >
