Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 24B5A251E for ; Thu, 5 May 2011 09:43:30 +0000 (UTC) Received: (qmail 50276 invoked by uid 500); 5 May 2011 09:43:28 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 50215 invoked by uid 500); 5 May 2011 09:43:27 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 50207 invoked by uid 99); 5 May 2011 09:43:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 May 2011 09:43:27 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [217.111.120.9] (HELO mailout01.rmx.de) (217.111.120.9) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 May 2011 09:43:18 +0000 Received: from [172.19.16.59] (HELO kdin04.retarus.de) by mailout01.rmx.de (CommuniGate Pro SMTP 5.2.13 _community_) with ESMTP id 191904386 for user@couchdb.apache.org; Thu, 05 May 2011 11:42:58 +0200 Received: from MAIL1.virtual-identity.net (mail.virtual-identity.com [195.226.108.10]) by kdin04.retarus.de (8.14.2/8.14.2/retarus.custom) with ESMTP id p459gsjJ017850 for ; Thu, 5 May 2011 11:42:55 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: URL-Encoded DELETE: " vs. %22 Date: Thu, 5 May 2011 11:42:54 +0200 Message-ID: <5BB0C5BEFECA11468B40FB51F7856E23042A2B4D@MAIL1.virtual-identity.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: thread-topic: URL-Encoded DELETE: " vs. %22 thread-index: AcwLCKmYhGNfrTYKRh69WuhCE+qgSg== From: "armin weisser" To: X-RMX-ID: 20110505-114255-p459gsjJ017850-0@kdin04 X-RMX-TRACE: 2011-05-05 11:42:56 RmxMSO@kdin04/mailcc07 [0.4s] 20110505-114255-p459gsjJ017850-0@kdin04 0:00:01 X-RMX-TRACE: 2011-05-05 11:42:55 KdIn@kdin04/mailcc08 [0.3s] 20110505-114255-p459gsjJ017850-0@kdin04 0:00:00 X-Virus-Checked: Checked by ClamAV on apache.org Hi, i'm facing an issue with URL-Encoded DELETE Requests where double quotes (") are translated to %22. These GETS are equivalent curl -X GET http://localhost:5984/mydb/_design/views/_view/accounts?key=3D"4711" curl -X GET http://localhost:5984/mydb/_design/views/_view/accounts?key=3D%224711%22 This DELETE is OK curl -X DELETE http://localhost:5984/mydb/4711?rev=3D"1-7511a58b76f9a9dec6a666ecc74302f6= " But this one returns a 500 curl -X DELETE http://localhost:5984/mydb/4711?rev=3D%221-7511a58b76f9a9dec6a666ecc74302= f 6%22 Is this a known problem? Cheers, Armin