Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 78352 invoked from network); 10 Jun 2008 19:04:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jun 2008 19:04:05 -0000 Received: (qmail 4334 invoked by uid 500); 10 Jun 2008 19:04:07 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 4312 invoked by uid 500); 10 Jun 2008 19:04:07 -0000 Mailing-List: contact couchdb-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-user@incubator.apache.org Delivered-To: mailing list couchdb-user@incubator.apache.org Received: (qmail 4300 invoked by uid 99); 10 Jun 2008 19:04:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Jun 2008 12:04:06 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of brking@gmail.com designates 74.125.46.158 as permitted sender) Received: from [74.125.46.158] (HELO yw-out-1718.google.com) (74.125.46.158) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Jun 2008 19:03:14 +0000 Received: by yw-out-1718.google.com with SMTP id 5so1788965ywr.0 for ; Tue, 10 Jun 2008 12:03:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=2FhO1ayNHC9ZnreTTQZtdvdNRwccC4FhSbjNEzshEjI=; b=nRHMx4yEYTwMy0EDB+f15/2NE8/VAnUmPH8DwFNQXXDHV+cv0LfmQ1Mr1oLeLzaUet CmPHjhNpK+FCEdW/L13NaK9WbBBq1udo7/3KjytHvN+sX0MPAg1C1NatbHfQhiv+crij CMBqtrMAOEE3dbJbkfOfdspIXIMDA3b5xKCMU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=u6N4qeyM2aQcAgUkT93u3DDuOZWXhP45h/PXuqwl59Vixnhz945Q01RIJUfOHv3kl8 rOh+3qVJqF8TGaWzL7GHvdpsyhtt3CCLLWmObqyv7sld8t6iNApN2wL67+Q0v2nRyR8v d1tREJHwxxtlyMkJZ0zFnEI9VwUBK0yYfAZCo= Received: by 10.114.112.1 with SMTP id k1mr5487308wac.10.1213124583638; Tue, 10 Jun 2008 12:03:03 -0700 (PDT) Received: by 10.114.182.11 with HTTP; Tue, 10 Jun 2008 12:03:03 -0700 (PDT) Message-ID: <888cd9180806101203i1eaa8eacwc15ddc7cf4c31f9@mail.gmail.com> Date: Tue, 10 Jun 2008 15:03:03 -0400 From: "Brad King" To: couchdb-user@incubator.apache.org Subject: Re: 500 server error posting a view In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <888cd9180806101101u28b29cban871829654da09b05@mail.gmail.com> <888cd9180806101118sa8d2671gee270216d6500dbe@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org I tried adding the "language" specifier, but no change. The couch.ini section you mentioned looks like this: [Couch Query Servers] text/javascript=/usr/local/bin/couchjs -f /usr/local/share/couchdb/server/main.js On 6/10/08, Chris Anderson wrote: > Brad, > > there's an (optional) parameter on view json. try this: > > { > "language": "javascript", > "map" : "function(doc) { emit(null, doc); } " > } > > although "javascript" is supposed to be the default, so it makes me > wonder if something else s the source of your error. > > The problem could be with your couch.ini file - > /usr/local/etc/couchdb/couch.ini should have a line in it like this > (which is also the default): > > [Couch Query Servers] > > javascript=/usr/local/bin/couchjs /usr/local/share/couchdb/server/main.js > > > On Tue, Jun 10, 2008 at 11:18 AM, Brad King wrote: > > Chris: ah, yes I screwed up the URL, however I still get the 500 after > > fixing this: > > > > POST /product/_temp_view HTTP/1.0 > > Content-Type: application/json > > Content-Length: 55 > > Host: d0002rptdb02:5984 > > > > { > > "map" : "function(doc) { emit(null, doc); } " > > } > > > > Different error though > > > > HTTP/1.0 500 Internal Server Error > > Server: inets/develop > > Date: Tue, 10 Jun 2008 18:12:52 GMT > > Cache-Control: no-cache > > Pragma: no-cache > > Expires: Tue, 10 Jun 2008 18:12:52 GMT > > Connection: close > > Content-Type: text/plain;charset=utf-8 > > > > {"error":"query_language_unknown","reason":"application\/json"} > > > > > > Jan, this is the correct format for an ad-hoc view, no? the page you > > linked me to is where I got the info. > > > > BTW I can browse the database just fine with a web browser, and the > > default query runs ok in a browser as well. > > > > Thanks > > > > On 6/10/08, Chris Anderson wrote: > >> Brad, > >> > >> It look like the url: > >> > >> > POST /product/_test_view HTTP/1.0 > >> > > >> > >> should be /product/_design/test_view (for a named view) > >> > >> or /product/_temp_view > >> > >> assuming your db name is product. > >> > >> Hope that helps. > >> > >> Chris > >> > >> -- > >> Chris Anderson > >> http://jchris.mfdz.com > >> > > > > > > -- > Chris Anderson > http://jchris.mfdz.com >