Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Date: Tue, 28 Aug 2001 16:21:13 +0200 From: Daniel Steinmann To: "Tait, Allen" Cc: "'cygwin AT cygwin DOT com'" Subject: Re: Java NoClassDefFoundError Message-ID: <20010828162113.A1484@stonie.insonic.com> Mail-Followup-To: "Tait, Allen" , "'cygwin AT cygwin DOT com'" References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from atait@IDEXX.com on Tue, Aug 28, 2001 at 10:08:38AM -0400 Tait, Allen wrote: > Having a problem executing a java program in a .sh file when running the .sh > in Cygwin. The following code snip is part of a larger .sh file that was > written for the Solaris env. I am trying to get it functioning on Windows > NT. Before calling "java", the script cd's to the directory where the java > program is. However, the call throws a "NoClassDefFoundError" exception. > It can not find the class being called, (.org.jboss.Main). I can execute > this call on the command line and it works fine. When the code is called > inside of the .sh, it does not. I have tried specifying the paths in > -classpath as both full and relative paths. Still no luck. Has anyone else > encountered a similar problem? You have to invoke java with windows style path: CLASSPATH=.:run.jar:../lib/xerces.jar:../lib/crimson.jar # Convert path in case of cygwin CLASSPATH=`cygpath --path --windows "$CLASSPATH"` java -classpath "$CLASSPATH" org.jboss.Main tomcat HTH, Daniel. -- Daniel Steinmann, Insonic AG, Zuerich, Switzerland daniel DOT steinmann AT insonic DOT com, +41 1 317 88 99, fax: +41 1 317 88 90 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/