[3450] in java-interest

home help back first fref pref prev next nref lref last post

Re: NS/Beta 2:"start: applet not intialized"

daemon@ATHENA.MIT.EDU (Steve Azueta)
Mon Nov 13 15:46:40 1995

Date: Mon, 13 Nov 1995 12:02:25 -0500
From: Steve Azueta <azueta@lennon.sonicnet.com>
To: downing@GRAPHICS.CS.NYU.EDU
Cc: java-interest@java.sun.com

Troy says...

> I've had trouble getting NetScape 2.0b2 to run applets. All of my
> applets ran fine under the 2.0b1 version, but the second beta version
> just doesn't want to run them. Gives me all sorts of complaints.
> (BTW, my CLASSPATH points to the moz2_0.car dir, and I updated this
> file to the new moz2_0.car file.)

I had the very same trouble with Netscape 2.0b2 on Solaris 2.4.  Here's
what I found:

Specifying the moz2_0.car directory path is NOT good enough for Netscape
2.0b2.  Your CLASSPATH must specify the full path of the file.  AND it
needs to be the FIRST path in CLASSPATH.   Like so:

---------
# NO GOOD:

setenv CLASSPATH /usr/joe/moz_dir:/usr/local/classes

# GOOD:

setenv CLASSPATH /usr/joe/moz_dir/moz2_0.car:/usr/local/classes

#NO GOOD:

setenv CLASSPATH /usr/local/classes:/usr/joe/moz_dir/moz2_0.car

---------

The bad news is, this is understandably bad for javac, which correctly
parses CLASSPATH for paths, not files.  I've reported this as a bug
to Netscape.

Hope this helps, good luck,

steve.

-- 
Steve Azueta
azueta@sonicnet.com
-
This message was sent to the java-interest mailing list
Info: send 'help' to java-interest-request@java.sun.com

home help back first fref pref prev next nref lref last post