"Undefined symbols" errors when System.loadLibrary is loading shared object file

1998-09-21 Thread satya seshu kumar dammu
CC: Satya Seshu Kumar <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable subject: = "Undefined symbols" errors when System.loadLibrary is loading shared obje= ct file i have a java class called "hello" ( very simple

1.1.6 v4 libc 5

1998-09-21 Thread Gordon Chamberlin
I have downloaded 1.1.6 v4 for libc and am testing it with Caldera OpenLinux 1.2. I upgraded the libc to 5.4.46 and ld.so to 1.9.9. I get the following error when I try running a java program: SIGSEGV 11* segmentation violation Full thread dump: Monitor Cache Dump: Registered Monitor Dump:

Re: New Installation Problem

1998-09-21 Thread Juergen Kreileder
> Georgios Y Lazarou writes: > Hi, > I just download and install jdk1.1.6 at /usr/local/jdk1.1.6/. I > read the README.linux file and I did everything it is said there. I > added to the PATH the bin dir: "/usr/local/jdk1.1.6/bin". Now, when > I try to run javac I get the following error m

Kaffe and Serialization (was Re: Kaffe and HJBrowser)

1998-09-21 Thread Steve Waldman
Peter, Speaking of things that might be "beyond-spec", are Kaffe's standard classes and the Sun JDK classes Serialization compatible? For example, if I were to Serialize a java.awt.Panel generated by a Kaffe VM, and send it over a network to a Sun VM, could the Sun VM deserialize it properly to i

New Installation Problem

1998-09-21 Thread Georgios Y Lazarou
Hi, I just download and install jdk1.1.6 at /usr/local/jdk1.1.6/. I read the README.linux file and I did everything it is said there. I added to the PATH the bin dir: "/usr/local/jdk1.1.6/bin". Now, when I try to run javac I get the following error message: $ javac CFFCT.java /usr/local/jdk1.1

Re: CLASSPATH problem

1998-09-21 Thread Todd R. Palmer
More than likely, you still have Kaffe installed, and it is the kaffe complier you are running. Kaffe is installs the following files: /usr/bin/appletviewer /usr/bin/jar /usr/bin/javac /usr/bin/javadoc /usr/bin/javakey /usr/bin/javap /usr/bin/jdb /usr/bin/kaffe try removing kaffe (rpm -e kaffe

Re: Kaffe and HJBrowser

1998-09-21 Thread Peter C. Mehlitz
On Mon, 21 Sep 1998, Alexandre Boissy wrote: >I just downloaded kaffe v1.0 and Hot Java Browser v1.1.4. I'd like to >know if it's possible to run hotjava with kaffe. No, it isn't (yet). There are certain "beyond-spec" incompatibilities (SwingGraphics delegation / inheritance, deprecated implement

Re: CLASSPATH problem

1998-09-21 Thread Michael Sinz
On Mon, 21 Sep 1998 15:48:51 -0500, Larry Bottorff wrote: >I just downloaded jdk1_1_6-v2-glibc_tar.gz and set it up in >/usr/lib/jdk1.1.6. I'm using Red Hat 5.1 on Intel and I had previously >updated glibc with glibc-2_0_7-19. I also set up my path to >/usr/lib/jdk1.1.6/bin. When I try to compile

CLASSPATH problem

1998-09-21 Thread Larry Bottorff
I just downloaded jdk1_1_6-v2-glibc_tar.gz and set it up in /usr/lib/jdk1.1.6. I'm using Red Hat 5.1 on Intel and I had previously updated glibc with glibc-2_0_7-19. I also set up my path to /usr/lib/jdk1.1.6/bin. When I try to compile: javac hello.java, I get the error message CLASSPATH is not se

THANKS

1998-09-21 Thread Syed Mubin
__ Syed Mubeen National Centre For Biological Sciences, [EMAIL PROTECTED]TIFR Centre, P.B #1234, 80-334-5615 or 4062 or 3035 IISc Campus, Resi :3452848Banga

Re: Java interface to MySQL

1998-09-21 Thread Vincent Trussart
Corey Shelton wrote: > I was told that there's a JAVA web interface for MySQL that works much > better than the one currently in Perl. Could someone point me in the right > direction? > > Thanks > Corey Here is a very good jdbc driver for MySQL : http://www.voicenet.com/~zellert/tjFM/ Goo

freebuilder config ???

1998-09-21 Thread Marcio Macedo
Hi I'm trying to run freebuilder in my system, besides it refuses saying: Can't find class Main I'm using JDK1.1.5 and its configuration looks fine, Can anyone help ? -- --Marcio Macedo Conectiva

JAVA-LINUX

1998-09-21 Thread Edson Soares Ramos
Hi, i'm using RH 4.2 and i installed jdk1.1.6 for linux. The installation was susccesfully. I wrote a litle code(Hello Wold) but when i run javac Hello, it gives me a message like that one: No Library path set. Failed to locate native function: java/lang/System.currentTimeMillis()j COULD SOM

JDK on LINUX

1998-09-21 Thread Syed Mubin
__ Syed Mubeen National Centre For Biological Sciences, [EMAIL PROTECTED]TIFR Centre, P.B #1234, 80-334-5615 or 4062 or 3035 IISc Campus, Resi :3452848Banga

Re: RXTX, SerialImp.c

1998-09-21 Thread Michael Sinz
On Mon, 21 Sep 1998 08:12:26 -0700, Dan Kegel wrote: >[EMAIL PROTECTED] wrote: >> The major thing I have done with ioctls() is to do a nonblocking read >> FIONREAD which also returns the number of bytes available for reading. I >> could not find a similar function using termios. I can't think of

Java interface to MySQL

1998-09-21 Thread Corey Shelton
I was told that there's a JAVA web interface for MySQL that works much better than the one currently in Perl. Could someone point me in the right direction? Thanks Corey

Re: RXTX, SerialImp.c

1998-09-21 Thread david . atkinson
Dan, I did try to write a version using select() but it stopped everything while waiting on the select. I agree that java lacks select(). It would be great if you could get a version of select under java. Alternatively if I could stop select blocking all threads .. Dave > [EMAIL PROTECTED]

Re: RXTX, SerialImp.c

1998-09-21 Thread Dan Kegel
[EMAIL PROTECTED] wrote: > The major thing I have done with ioctls() is to do a nonblocking read > FIONREAD which also returns the number of bytes available for reading. I > could not find a similar function using termios. I can't think of a way > to avoid this. (I would actually like to go even l

Kaffe and HJBrowser

1998-09-21 Thread Alexandre Boissy
Hello, I just downloaded kaffe v1.0 and Hot Java Browser v1.1.4. I'd like to know if it's possible to run hotjava with kaffe. How modify script 'hotjava' to do this ? Thank's a lot for your help. Alexandre.

Re: Where is 1.1.6v4 published?/diffs?

1998-09-21 Thread Bernd Kreimeier
Dan Kegel writes: > Oddly enough, the only one I've found is > ftp://ftp.tux.org/pub/java/JDK-1.1.6/i386/glibc/v4a/ Are the source diffs to the stock JDK 1.1.6 distribution available somewhere? b.

RE: Where can I get JDK-1.1.6v4 ?

1998-09-21 Thread Harold G. Andrews II
I was able to download v4a for i386 architecture (glibc) from the following site: ftp://ftp.iodynamics.com/pub/mirror/linux-jdk/JDK-1.1.6/ I haven't installed it yet, but I was able to get it. Enjoy. -Andy > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Be

Re: Arithmetic Precision Errors

1998-09-21 Thread Ondrej Popp
I am not able to reproduce this, can you be more specific on the source? Ondrej import java.io.*; public class arithmetic { public static void main(String Args[]) { double d1 = 172.5 / 1000; double d2 = 817.0 / 1000; double d3 = 4975.0 / 1000; Double D1 = new Doub

Re: jikes core dump ??

1998-09-21 Thread Ondrej Popp
I have no problems with it runs just fine, [18] popp@FastFelix $ ldd `which jikes` libstdc++.so.2.8 => /usr/lib/libstdc++.so.2.8 (0x40005000) libm.so.6 => /lib/libm.so.6 (0x40046000) libc.so.6 => /lib/libc.so.6 (0x4005e000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2

RE: jikes core dump ??

1998-09-21 Thread Kapoor, Nishikant X
Check your CLASSPATH. I had the same problem until I found out that my CLASSPATH was having a .jar file which no longer existed on my box. Fixed it and jikes works fine now. Nishi --People who live in windowed environments shouldn't cast pointers-- mailto:[EMAIL PROTECTED] http://www.c3ipros.co

Return key is ignored in XmTextWidgetClass inside static Motif applications.

1998-09-21 Thread peter . pilgrim
I have had an irritating long term low priority problem with applications built with a static Motif library. When application display a XmTextWidget, the [RETURN] does not work. Ie the default widget translation: ~Alt ~Shift ~Ctrl Return newline() does not seem to work at all on my e

Arithmetic Precision Errors

1998-09-21 Thread Maarten van Leunen
Howdie, I have this panel containing fields that I have to arithmetically change. However, with some fields, with the following calculation I get the following results: 172.5 / 1000 = 0.172501 817.0 / 1000 = 0.81701 4975.0 / 1000 = 4.975005 Why is that and how do I stop it? It loo

Re: jikes core dump ??

1998-09-21 Thread Artur Biesiadowski
On Mon, 21 Sep 1998, Paul V. Drobnich wrote: > Hi All > Does anybody use ibm's Jikes compiler? It realy runs quikly on win32 > but as soon I run it under Linux core dumps was occured :-( > I have tried it for glib as good as for libc5 -- same result. As for > me compiler looks workab

Re: RXTX, SerialImp.c

1998-09-21 Thread david . atkinson
Guys, I haven't had a chance to look at what everyone has done but here are my thoughts. The major thing I have done with ioctls() is to do a nonblocking read FIONREAD which also returns the number of bytes available for reading. I could not find a similar function using termios. I can't think o

Re: Q how do I covert an applet to a Servlet

1998-09-21 Thread Joe Carter
Hmmm some questions... Do you merely wish to move some of the app to the server and talk via a Java applet front end, or do you wish to have a HTML UI? You could use a socket/RMI for the first case. The 2nd would involve a re-write of the user interface. The ease of either of these depends upon

jikes core dump ??

1998-09-21 Thread Paul V. Drobnich
Hi All Does anybody use ibm's Jikes compiler? It realy runs quikly on win32 but as soon I run it under Linux core dumps was occured :-( I have tried it for glib as good as for libc5 -- same result. As for me compiler looks workable: it normal dumps helps for calling without parame

Q how do I covert an applet to a Servlet

1998-09-21 Thread Matt Zagni
Hi, I have been presented with what I think must be a very common request. Can you convert an Applet to a Servlet ? I have just been presented with this task after a very large applet application has been created that contains quite a number of files. But the application now needs to be conver

Well Done

1998-09-21 Thread Adrian Pronk
We at work have been using the Linux JDK for several months now and find it to be a great system with no show-stoppers (apart from the standard ones :-) Good work! Adrian.Pronk@... (see mail domain in From line)

Re: Object Mapping into sql dbms?

1998-09-21 Thread Joe Carter
David Warnock wrote: > > There are a large number of commercial products available to map java > objects into relatonal databases (I use one called VBSF for some > commercial products). > > But are there any Open Source tools to do this? I am interested in > contributing to such a project as I n

Re: JIT compiler TYA

1998-09-21 Thread Jeff Sider
Does anyone have the URL for this or any JIT that will work with JDK1.1.6v4a. Thanks. Leung Yau Wai wrote: > > Dear all, > > I would like to ask do TYA support a JAVA application with native > C function call? It seem that I got core dump in this suitation. I would > like to confirm

Re: NETBEANS INSTALL

1998-09-21 Thread Kevin Ryan
Hi, Syed, To paraphrase Jerry McGuire: "Show us the CLASSPATH." Best Regards, KR Syed Mubin wrote: > ... > Hi, > > I'm trying to install Netbeans nbdv20b3.sh on JDK1.1.6 but > not sucessful.I also have installed SWING1.0.3 the SwingSet example is > working fine but when i wrote a

Re: NETBEANS INSTALL

1998-09-21 Thread Jeff Sider
> interface com.sun.java.swing.*; I think you mean "import" ??? Syed Mubin wrote: > > __ > Syed Mubeen National Centre For Biological Sciences, > [EMAIL PROTECTED]TIFR Centre, P.B #1234,

Re: Object Mapping into sql dbms?

1998-09-21 Thread Peter T Mount
On Sat, 19 Sep 1998, David Warnock wrote: > Peter T Mount wrote: > > > > But are there any Open Source tools to do this? I am interested in > > > contributing to such a project as I need it for several open source > > > projects I have planned. > > > > I added this functionality into the Postgr

NETBEANS INSTALL

1998-09-21 Thread Syed Mubin
__ Syed Mubeen National Centre For Biological Sciences, [EMAIL PROTECTED]TIFR Centre, P.B #1234, 80-334-5615 or 4062 or 3035 IISc Campus, Resi :3452848Banga

Re: jdk in linux

1998-09-21 Thread P Q
Thanks Juergen that is the problem. I downloaded the libc5 version and it magically works. do I need to worry about the jre, rt, i18 if I already have jdk? thanks a lot for your help!! ---Juergen Kreileder <[EMAIL PROTECTED]> wrote: > > > P Q writes: > > > hi I just downloaded the jdk1