From rjamison@lincom-asg.com Tue Sep 19 14:26:42 2000 Return-Path: Mailing-List: contact general-help@xml.apache.org; run by ezmlm Delivered-To: mailing list general@xml.apache.org Received: (qmail 85391 invoked from network); 19 Sep 2000 14:26:42 -0000 Received: from adsl-216-62-177-178.dsl.hstntx.swbell.net (HELO jupiter2.lincom-asg.com) (216.62.177.178) by locus.apache.org with SMTP; 19 Sep 2000 14:26:42 -0000 Received: from lincom-asg.com (ishmal@[206.109.111.108]) by jupiter2.lincom-asg.com (8.9.3/8.8.7) with ESMTP id KAA13584; Tue, 19 Sep 2000 10:27:34 -0500 (CDT) (envelope-from rjamison@lincom-asg.com) Message-ID: <39C777A1.415220CD@lincom-asg.com> Date: Tue, 19 Sep 2000 09:26:41 -0500 From: Bob Jamison X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: general@xml.apache.org CC: bhalchin@hotmail.com Subject: Re: xerces.jar on Solaris 7 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Bill Halchin wrote: > Hello, > > I am now able to program using the xerces.jar on Red Hat Linux. > Now I am trying to use on Solaris 7. Again javac cannot see > xerces.jar. Probably I have set my CLASSPATH env var incorrectly. > I am running the C shell. I have set exactly as > > set CLASSPATH=(/usr/people/bhalchin/FTP/xerces-1_1_3/xerces.jar .) > > E.g. XMLReader in org.xml.sax.XMLReader cannot be resolved. > > Bill Bill, On sh, rsh, or bash, it would either be set CLASSPATH=/usr/people... etc.. export CLASSPATH or, more concisely, export CLASSPATH= On csh and tcsh it is setenv CLASSPATH /usr/people.... etc.. (with no =) Bob