Re: Help,, Red Hat 5.1 and JDK1.2

2000-02-04 Thread Jacob Nikom
Very easily: ls -l /lib/libc.so.* Jacob Nikom "David A. Gershman" wrote: > > Sorry, for this stupid follow-up question, but how do I determine my > version of glibc? > > David > > > You could have problem with glibc. JDK1.2.2 which you have does not > > work with gilibc 2.1.1 which you likely

Re: starting a java server at boot time

2000-02-04 Thread Nathan Meyers
On Fri, Feb 04, 2000 at 08:11:25PM +, Todd Papaioannou wrote: > > >If the boot up process stalls, it could be caused by > >an unresolved hostname, or something else the server is trying > >to find out at startup. > > Does the server start from the command line? If so, find out > what servic

Re: Pen-operated portable that can run Java?

2000-02-04 Thread David Marshall
Jacob Nikom wrote: > Hi, > > Are there any pen-based portable devices that can run Java? > > Thank you, > > Jacob Nikom > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAI

Re: starting a java server at boot time

2000-02-04 Thread Paul Mclachlan
At 8:58 02 Feb 2000 -0800, [EMAIL PROTECTED] wrote: > Brett, > If the boot up process stalls, it could be caused by > an unresolved hostname, or something else the server is trying > to find out at startup. > > You could start the server in the background, by adding a > '&' after the command

Re: Odd Sun JDK problem

2000-02-04 Thread Paul Mclachlan
At 14:52 02 Feb 2000 -0500, Timothy Reaves wrote: > I'm trying to end my use of windows. Now that JBuilder is available > for linux this MIGHT happen. I say might because I'm having a very > strange problem. > > I have an RMI server. When I brought it over this morning, I > compiled,

Re: starting a java server at boot time

2000-02-04 Thread Todd Papaioannou
>If the boot up process stalls, it could be caused by >an unresolved hostname, or something else the server is trying >to find out at startup. Does the server start from the command line? If so, find out what services it requires to boot. You might be starting it too early in the init process.

Re: Help,, Red Hat 5.1 and JDK1.2

2000-02-04 Thread Jacob Nikom
You could have problem with glibc. JDK1.2.2 which you have does not work with gilibc 2.1.1 which you likely have on RedHat 5.1 Jacob Nikom Marcos Oliva wrote: > > Hello guys, > > I downloaded the JDK1.2 and Un-tar the thing on /usr/local and > i set the PATH to included, but when I try to run

Odd Sun JDK problem

2000-02-04 Thread Timothy Reaves
I'm trying to end my use of windows. Now that JBuilder is available for linux this MIGHT happen. I say might because I'm having a very strange problem. I have an RMI server. When I brought it over this morning, I compiled, started it up, and all was well. I then corrected some of the

Pen-operated portable that can run Java?

2000-02-04 Thread Jacob Nikom
Hi, Are there any pen-based portable devices that can run Java? Thank you, Jacob Nikom -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Help,, Red Hat 5.1 and JDK1.2

2000-02-04 Thread Marcos Oliva
Hello guys, I downloaded the JDK1.2 and Un-tar the thing on /usr/local and i set the PATH to included, but when I try to run java -version i get the following /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or directory /usr/local/jdk1.2.2/bin/java: /bin/realpath: No such file or di

Stop one service of JSWDK

2000-02-04 Thread Emilio Alvarez
I have this webserver.xml file Is possible to stop one service only. What can i do in admin port? -- Emilio Alvarez Rebollo Analista\programador de l'Oficina de l'Autònoma Interactiva Docent e-mail: [EMAIL PROTECTED] begin:vcard n:Alvarez;Emi

Re: starting a java server at boot time

2000-02-04 Thread [EMAIL PROTECTED]
Brett, If the boot up process stalls, it could be caused by an unresolved hostname, or something else the server is trying to find out at startup. You could start the server in the background, by adding a '&' after the command in the rc. file. Troy > > can someone tell me how to start a jav

Java3D examples

2000-02-04 Thread Gerald Quintana
Hi, I've just installed java3d on my JDK 1.2.2 RC2 (Linux Mandrake 6.x), but the examples which use texture doesn't work. For example BillBoard, TextureTest... The error message is: method unknown (eip = 65000a0b) SIGSEGV 11* segmentation violation si_signo [11]: SIGSEGV 11* segmentati

starting a java server at boot time

2000-02-04 Thread Brett Hamlin
can someone tell me how to start a java server at boot time. i put it in rc.local and the server just freezes when it gets to that line. thanks, brett -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscrib

Re: java, lesstif, Choice component bug

2000-02-04 Thread Nathan Ehresman
> Ok, this has been haunting me for a while now : > > For some reason the keyboard focus gets screwed up after two selections of > a choice box in my java apps... I've found very little reference to this > bug anywhere. I was told however that this is a problem with Motif, not > specificly the J

Re: VMs with processor specific code generation

2000-02-04 Thread SHUDO Kazuyuki
Mr. Wolfgang Hoschek wrote: > > I have a paper written by Intel > > researchers. The paper describes the method for JIT to > > exploit MMX instructions. > > Could only find an announcement for two Intel tutorials at SC and > JavaGrande, but nothing written. Do you have something printable? I got

Re: Wasnt there suppose to be a new JAVA licensing model to be shown today?

2000-02-04 Thread Dimitrios Vyzovitis
Uncle George wrote: > Is there going to be any news as to what this new model will be, or when > it will be publically announced ? > gat > It could be the SISL Sun Industry Standards Source Licence: http://www.theregister.co.uk/000202-13.html better than SCSL, but still not good enough ;-)

RE: JNI & .so Files

2000-02-04 Thread Ekkehard Kraemer
Hallo Lee, LX>so2 in either t1 or t2 thread context, so2 always uses the second LX>thread t2's *JNIEnv to call back to java. But we need so2 call back to LX>so1 then As said before: try it without global variables. Even if everything works correctly for one thread - as you noticed, the JNIEn

RE: JNI & .so Files

2000-02-04 Thread Lee_Xing
Weiqi, You are right. That's the problem. Sorry for the careless mistake. To make the code more interesting, I add two threads, t1 and t2, in the code this time and found some problems, maybe they are my problems again :( Q1: Based on JNI spec, different native functions in the same thread