Re: javac problem

1998-09-16 Thread Jeff Sider
I also have the exact same problem. Just install JDK-1.1.6-v4a libc version on Red Hat 4.2. If I run javac_g, I get: SIGSEGV 11* segmentation violation Full thread dump: "../../../../src/genunix/java/green_threads/src/monitor_md.c", line 443: assertion failure *** panic: Internal error dump

OS/2 JVM three times faster than others!?

1998-09-16 Thread Dan Kegel
Check out http://www.infoworld.com/cgi-bin/displayTC.pl?/980914analysis.htm It shows OS/2's latest JVM to be *three times* faster than any other. (They haven't tried Blackdown's v4a yet; they only used v2.) Perhaps the Blackdown team will be interested in getting a copy of the benchmark code th

Java benchmark article

1998-09-16 Thread Dan Kegel
Hi Mr. Young, I enjoyed reading your article, http://www.infoworld.com/cgi-bin/displayTC.pl?/980914analysis.htm I really liked your technique of factoring out everything but the Java VM in question. Good job! I understand that Blackdown's JDK1.1.6v4a has removed a bottleneck that impacted its Vo

Re: Java Activator (plugin) on redhat 5.1 with Netscape 4.06

1998-09-16 Thread Milan Zimmermann
Stephen Martin wrote: > > I just downloaded the java activator from blackdown.org and have installed > it. It does not seem to work. When I start netscape I get: > > ERROR: /home/smartin/.netscape/plugins/javaplugin.so: undefined symbol: stat > Cant load plugin /home/smartin/.netscape/plugins/ja

javac problem

1998-09-16 Thread Calixto Melean (Personal)
I installed the corresponding jdk in my glibc linux system. the java command runs fine. however, the compiler (javac) gives me the following errors: SIGSEGV 11* segmentation violation Full thread dump: Monitor Cache Dump: Registered Monitor Dump: Monitor IO lock: Child death monitor:

Re: Swing & Navigator

1998-09-16 Thread Toni Nikkanen
On Wed, 16 Sep 1998 [EMAIL PROTECTED] wrote: > > -- > | From: drobnic.pavlo / mime, , , [EMAIL PROTECTED] > | To: dpinya / mime, , , [EMAIL PROTECTED] > | Cc: java-linux / mime, , , [EMAIL PROTECTED] > | Subject: Re: Swing & Navigator > | Date: Saturday, May 16, 1998 8:59AM > | > |

Re: Well done

1998-09-16 Thread Kenny Freeman
Hey, pictou county (NS Canada) was the pizza capital of the world - most pizza places per person. Well, quantity, not nec quality eh? BTW, keep up the good work. :) __ Kenny Freeman <[EMAIL PROTECTED]> "a population that gives up its freedoms in the name of order will ultimately end up losing b

Re: verify-error116v4a

1998-09-16 Thread Juergen Kreileder
Lars Vahlen <[EMAIL PROTECTED]> writes: > Does anyone know what kind of changes there are with the > security-model/signed applets from 115v7 to 116v4a? I have an > experimental applet, > http://www.algonet.se/~val/MM_applet/mutatorapplet.html which worked > fine with 115v7 but throws a rather u

Printing PostScript output, was: Re: Printing of Graphics

1998-09-16 Thread Robert Dodier
Hello all, This doesn't really answer the original question about printing graphics, but perhaps this will be of interest to people who need to print graphics. I came across a class called PSGr and fixed it up a little -- the result is attached to my homepage, http://civil.colorado.edu/~dodier.

verify-error116v4a

1998-09-16 Thread Lars Vahlen
Does anyone know what kind of changes there are with the security-model/signed applets from 115v7 to 116v4a? I have an experimental applet, http://www.algonet.se/~val/MM_applet/mutatorapplet.html which worked fine with 115v7 but throws a rather unexplained verify-error with 116v4a. Regards Lars

Server Socket problem

1998-09-16 Thread serge
Hello All. I've made some servlet and installed JServ module for apache. All works good but only short time. JServ module restarts often because of "Invalid argument" in server socket accept. Some error I've got while using JSDK's http server. Does anyone know how to solve this problem? bye, ls

Re: Well done

1998-09-16 Thread Uncle George
Canadian pizza, i dont think so . :-))) ( at least not for me. as i dont think anyone can match the garlic pizza from manville, n.j ( yes the former asbestos capital )) gat James Seigel wrote: > You guys rockcan we send pizza to you anywherE? >

Re: Problem spawning process with "several words"

1998-09-16 Thread Michael Sinz
On Wed, 16 Sep 1998 22:41:34 +0800, Jon Priddey wrote: >Any help much appreciated: > >I've got some code which integrates with RCS. >It creates a Process with: >Runtime.getRuntime().exec("ci -m\"blah blah blah\" filename",env); > >where "blah blah blah" is the description of the check-in. >Enclos

Re: Problem with getting JDK's to work

1998-09-16 Thread Sorin Lingureanu
On Wed, 16 Sep 1998, Molenda, Mark P wrote: > I have followed the checks listed on the web page for loading the jdk and > everything looks great. > The gzip tar file unloads and I add /usr1/jdk1.1.6/lib/classes.zip to my > CLASSPATH and /usr1/jdk1.1.6/bin > to my PATH. When I try to compile a he

libmath problem with jdk116v4

1998-09-16 Thread Oliver Koell
Hi, i´m using the JDK1.1.6v4 on a SuSE 5.3 distribution. To get it working, i had to remove libc.so.5 and libdl.so.1 from the jdk´s lib directory. Now i´ve got the following problem: /usr/lib/java/bin/../bin/i686/green_threads/java: can't resolve symbol '__eprintf' /usr/lib/java/bin/../bin

Re: Problem spawning process with "several words"

1998-09-16 Thread Joe Carter
Try using the String[] version of exec. That way it's doesn't get confused about what is a single argument. i.e. String[] args = { "ci","-m bbb bbb","fred","bill","ernie" }; Runtime.getRuntime().exec(args); Joe Jon Priddey wrote: > > Any help much appreciated: > > I've got some code which int

Re: Delete all class files

1998-09-16 Thread Armen Yampolsky
Thanks to everyone who wrote back! FWIW, the simplest solution for my purposes turned out to be the addition of the following line: Markus Fritz wrote: > > Just use > > vpath %.class $(ROOT)/classes > > in your makefile Cheers, -Armen > > Armen Yampolsky wrote: > > > > I have a p

Problem spawning process with "several words"

1998-09-16 Thread Jon Priddey
Any help much appreciated: I've got some code which integrates with RCS. It creates a Process with: Runtime.getRuntime().exec("ci -m\"blah blah blah\" filename",env); where "blah blah blah" is the description of the check-in. Enclosed in double quotes (") to group the words as a single parameter

Re: Problem with getting JDK's to work

1998-09-16 Thread Michael Sinz
On Wed, 16 Sep 1998 09:50:49 -0400, Molenda, Mark P wrote: >I have followed the checks listed on the web page for loading the jdk and >everything looks great. >The gzip tar file unloads and I add /usr1/jdk1.1.6/lib/classes.zip to my >CLASSPATH and /usr1/jdk1.1.6/bin >to my PATH. When I try to co

Re: Delete all class files

1998-09-16 Thread Paul Reavis
Armen Yampolsky wrote: > > I have a problem with this approach and using make, (probably because > I'm not using make correctly), in that if I use the -d option and use a > separate .class directory tree, make doesn't recognize the up-to-date > files there and recompiles everything anyway. I can

Problem with getting JDK's to work

1998-09-16 Thread Molenda, Mark P
I have followed the checks listed on the web page for loading the jdk and everything looks great. The gzip tar file unloads and I add /usr1/jdk1.1.6/lib/classes.zip to my CLASSPATH and /usr1/jdk1.1.6/bin to my PATH. When I try to compile a hello world program with javac it blows up with a core du

Java Activator (plugin) on redhat 5.1 with Netscape 4.06

1998-09-16 Thread Stephen Martin
I just downloaded the java activator from blackdown.org and have installed it. It does not seem to work. When I start netscape I get: ERROR: /home/smartin/.netscape/plugins/javaplugin.so: undefined symbol: stat Cant load plugin /home/smartin/.netscape/plugins/javaplugin.so. Ignored. and if I got

JDK problem with findClass in native code - NOT

1998-09-16 Thread Bernd Kreimeier
Bernd Kreimeier writes: > JDK seems to fail me. The very same classpath > that works to load the main Java class (import/javac) > does not work when I call env->FindClass in the > native code. Mistake on my account. I ended up trying "somepackage.SomeClass" instead of "somepackage/SomeC

Re: Swing & Navigator

1998-09-16 Thread A . KLOS
-- | From: drobnic.pavlo / mime, , , [EMAIL PROTECTED] | To: dpinya / mime, , , [EMAIL PROTECTED] | Cc: java-linux / mime, , , [EMAIL PROTECTED] | Subject: Re: Swing & Navigator | Date: Saturday, May 16, 1998 8:59AM | | >I'm usign Swing 1.0.2 and Communicator 4.05, and when I load

Re: ANNOUNCE: JAVA jdk116 for ALPHA

1998-09-16 Thread Uncle George
i have no access to 1.2, other than the 386 ports that javasoft beta's out. RH 4.1 ???, i'm surprised that 116, built on redhat 5.0 would work at all??? The library call dladdr() wasn't even avail at 4.1 time, which is now used to figure out where the parentage of the .so library is anyway - whe

Re: Numeric Keypad Gone with new JVM

1998-09-16 Thread K.R. Foley
Adam Williams wrote: > I upgraded from the JVM that comes with RedHat 4.2 (kaffe) to > Blackdown's JVM (jdk1.1.6v2-libc5). Drop and go, beautiful, much better than > my previous attempts to use thier JVM. It seems MUCH faster and in some > subtle way even seems to "look" better. But now my n

Numeric Keypad Gone with new JVM

1998-09-16 Thread Adam Williams
I upgraded from the JVM that comes with RedHat 4.2 (kaffe) to Blackdown's JVM (jdk1.1.6v2-libc5). Drop and go, beautiful, much better than my previous attempts to use thier JVM. It seems MUCH faster and in some subtle way even seems to "look" better. But now my numeric keypad doesn't work, i

Re: Swing & Navigator

1998-09-16 Thread David Wilkinson
At 08:59 16/05/98 +0200, Paul V. Drobnich wrote: >P.S. As for me, Swing-like applets is most slowest browser solution that >I seen in my life. Try servlets. Of course those not so nice as Swing, >but more applicable in real life. Um, servlets and swing address completely separate problem domains

Re: Printing of Graphics

1998-09-16 Thread Stephan Heffner
Hi Chris, > > Chris Sommers wrote: > > > > Maarten, > > Try using the swing graphics library. It has a componenet > > called JTable which is suitable. I've been using Swing under > > a different "popular" OS lately (guilt...), I like it. > > > > This begs the question - > > > > Open question to t

Re: Swing & Navigator

1998-09-16 Thread Paul V. Drobnich
>I'm usign Swing 1.0.2 and Communicator 4.05, and when I load any applet > that uses some Swing class, I have the next message: > > java.lang.NoSuchMethodError: java.awt.Component: method enableEvent(J)V > not found > at com.sun.java.swing.JComponent(JComponent.java:130) > at com.sun.java

Re: Delete all class files

1998-09-16 Thread Markus Fritz
Just use vpath %.class $(ROOT)/classes in your makefile Armen Yampolsky wrote: > > I have a problem with this approach and using make, (probably because > I'm not using make correctly), in that if I use the -d option and use a > separate .class directory tree, make doesn't recognize th