Return-Path: Delivered-To: apmail-incubator-directory-dev-archive@www.apache.org Received: (qmail 87039 invoked from network); 4 Mar 2005 17:52:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Mar 2005 17:52:05 -0000 Received: (qmail 65990 invoked by uid 500); 4 Mar 2005 17:52:04 -0000 Delivered-To: apmail-incubator-directory-dev-archive@incubator.apache.org Received: (qmail 65870 invoked by uid 500); 4 Mar 2005 17:52:04 -0000 Mailing-List: contact directory-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list directory-dev@incubator.apache.org Received: (qmail 65856 invoked by uid 99); 4 Mar 2005 17:52:04 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of mark.wilcox@gmail.com designates 64.233.184.196 as permitted sender) Received: from wproxy.gmail.com (HELO wproxy.gmail.com) (64.233.184.196) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 04 Mar 2005 09:52:00 -0800 Received: by wproxy.gmail.com with SMTP id 50so1029526wri for ; Fri, 04 Mar 2005 09:51:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=lm5VaE+j6b/OZ4k23YFy4k/BTjRqIUThRdOn6fzD89j5l22T2pmwIGyX+UqgoP+VlJclkObfuG8aZe5jNMCUvJdsWL+vV24/zK9mTEcT+D68ZOoFMxAxd5wsbHaYvrbYpY5tnHhxh8kewewP/sIJxhjJdMtoCu6zbGyeE+PX7Xk= Received: by 10.54.73.10 with SMTP id v10mr13688wra; Fri, 04 Mar 2005 09:51:57 -0800 (PST) Received: by 10.54.37.33 with HTTP; Fri, 4 Mar 2005 09:51:57 -0800 (PST) Message-ID: <754c27e4050304095131cb0dc3@mail.gmail.com> Date: Fri, 4 Mar 2005 12:51:57 -0500 From: Mark Wilcox Reply-To: Mark Wilcox To: Apache Directory Developers List , brennan.stehling@offwhite.net Subject: Re: downloading from subversion In-Reply-To: <8dd4018b05030407324f5161f7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <754c27e4050303201614c05c2f@mail.gmail.com> <014a01c52072$7a8d2c40$fb529145@mtbrook.bozemanpass.com> <754c27e4050303223313a3ac18@mail.gmail.com> <019f01c520c7$ae054990$fb529145@mtbrook.bozemanpass.com> <8dd4018b05030407324f5161f7@mail.gmail.com> X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N I'm really beginning to despise Oracle :). Turns out Oracle decided to put its JVM ahead of mine. Mark On Fri, 4 Mar 2005 09:32:06 -0600, Brennan Stehling wrote: > I believe the split method was added with JDK 1.4. Your IDE/compiler > may be using 1.4 while the runtime is using 1.3. Check your JAVA_HOME > and PATH settings. > > Once code in 1.4 is compiled much of it could run in a 1.3 runtime > because the bytecode is backward compatible, but it cannot call > previously non-existent methods. That may explain this behavior. And > it should bomb on any reference to NIO which was also added with 1.4. > > > Seems like a resanable assumption. In the version of the > > code I'm looking at (0.8 release) that line is: > > > > String[] comps = path.split( "/" ); > > > > If that's really the correct line then I'd suspect that somehow > > you're picking up a strange 'String' class from somewhere. > > -- > Brennan Stehling : http://brennan.offwhite.net/blog/ >