From users-return-5603-apmail-jackrabbit-users-archive=jackrabbit.apache.org@jackrabbit.apache.org Tue Nov 27 14:25:50 2007 Return-Path: Delivered-To: apmail-jackrabbit-users-archive@locus.apache.org Received: (qmail 79952 invoked from network); 27 Nov 2007 14:25:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Nov 2007 14:25:50 -0000 Received: (qmail 79162 invoked by uid 500); 27 Nov 2007 14:25:36 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 79142 invoked by uid 500); 27 Nov 2007 14:25:36 -0000 Mailing-List: contact users-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@jackrabbit.apache.org Delivered-To: mailing list users@jackrabbit.apache.org Received: (qmail 79132 invoked by uid 99); 27 Nov 2007 14:25:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Nov 2007 06:25:36 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of anchela@day.com designates 62.192.10.254 as permitted sender) Received: from [62.192.10.254] (HELO goobak01.day.com) (62.192.10.254) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Nov 2007 14:25:36 +0000 Received: by goobak01.day.com (Postfix, from userid 1212) id 4AB1250887; Tue, 27 Nov 2007 15:17:24 +0100 (CET) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by goobak01.day.com (Postfix) with ESMTP id 17FA550883 for ; Tue, 27 Nov 2007 15:17:24 +0100 (CET) Received: by nf-out-0910.google.com with SMTP id g13so966307nfb for ; Tue, 27 Nov 2007 06:25:15 -0800 (PST) Received: by 10.86.62.3 with SMTP id k3mr3903154fga.1196173515423; Tue, 27 Nov 2007 06:25:15 -0800 (PST) Received: from ?10.0.0.54? ( [62.192.10.254]) by mx.google.com with ESMTPS id e11sm1841676fga.2007.11.27.06.25.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 27 Nov 2007 06:25:14 -0800 (PST) Message-ID: <474C2910.6030903@day.com> Date: Tue, 27 Nov 2007 15:26:24 +0100 From: Angela Schreiber User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: users@jackrabbit.apache.org Subject: Re: regarding method SEARCH in webdav client References: <474C1DFF.5060004@day.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Ard Schrijvers wrote: >> Angela Schreiber wrote: > :-( I was but for some reason mixed up and thought it supported xpath > and sql search...but this is the JCR Webdav Server only. feel free to add SEARCH support to the simple-server. that shouldn't be such a big deal (unless you are looking for basic-search ;). up to know we (day) didn't have the need for search with the simple server. that's why it's not supported yet. looking forward to seeing your code angela ps: the SearchResource implementation in o.a.j.webdav.jcr.SearchResource (jackrabbit-jcr-server project) may give you some initial hints, how to add Search-support to the simple-server. however, you should be aware that with the jcr-server each Node object represents a dav-collection and each Property a non-collection resource, whereas in the simple server the mapping of Nodes to webDAV resources is defined by the IO-handling and by the 'collections' entry in the config.xml... that makes the difference requires more than just copy/past. this just as a little remark.