Re: Fun with serialization

1999-11-30 Thread Chris Abbey
At 07:38 11/30/99 , Michael Sinz wrote: >Also, I know of some problems with older versions of other Java compilers >(such as Jikes) that produce different version IDs from what JavaC does. >(This is a tricky problem - again it should not be an issue as you should >you the same exact class file and

RE: font.properties

1999-11-30 Thread John N. Alegre
Actually please post it to the list. I have seen no one yet who has any clue as to the fonts not found errors that are occurring with the jdk1.2. Back with 1.2v1 there was a font.dir and font.properties combo that was posted to the list that worked. but that stopped working with jdk1.2v2 and doe

Re: Problem in running Jdk1.2.2rc2 Demo on redhat 6.1

1999-11-30 Thread Paolo Ciccone
On Tue, Nov 30, 1999 at 02:45:52PM -, John Louis wrote: > Hi, > I try to run the SimpleExample, it give me these error: > > Exception in thread "main" java.lang.InternalError: Can't connect to X11 window > server using ':0.0' as the value of the Display variable. > at sun.awt.X11Graph

JNI, native threads and segmentation fault error

1999-11-30 Thread Anthony G. Starovojtov
Hi All, When running simple JNI program under Linux "Segmentation fault" error occured. I've known I can avoid it using native threads. But when setting THREADS_FLAG to "native" javac and java either hangs or says that can't read /proc/00116 directory. Also changing in sh script that invokes jav

Re: Serialization:)

1999-11-30 Thread Oliver Koell
[EMAIL PROTECTED] wrote: > > Do Sun have any plans for long term persistence of objects that have been > serialized? The serialization is a lovely idea, but the incompatibility > between different Jdk's, and recompiled objects, is a real pain. I don't know if this has been mentioned, but you can

Re: Serialization:)

1999-11-30 Thread Nelson Minar
>Do Sun have any plans for long term persistence of objects that have been >serialized? The serialization is a lovely idea, but the incompatibility >between different Jdk's, and recompiled objects, is a real pain. In theory, the incompatibility isn't that bad. In practice, it is. Some folks at S

java2native

1999-11-30 Thread me_kim
hey there! has anybody any experience with java2native compilers (like the extensions to gcc/ egcs)? i know, it`s possibly contrary to the java concept, but i would be interested if it works (and besides: if it works on other platforms than linux). regards kim -- Sent through Global Message

Availability of Colt 1.0 Beta 4 - Open Source Libraries for High Performance for Scientific and Technical Computing in Java

1999-11-30 Thread Wolfgang HOSCHEK
This is to announce the release of the Colt V1.0 Beta 4 distribution. Check out the online documentation and/or download at http://nicewww.cern.ch/~hoschek/colt/index.htm Scope = The Colt distribution provides an open source infrastructure for scalable scientific and technical computing in J

Re: Problem in running Jdk1.2.2rc2 Demo on redhat 6.1

1999-11-30 Thread Justin Lee
> John Louis wrote: > > Hi, > I try to run the SimpleExample, it give me these error: > > Exception in thread "main" java.lang.InternalError: Can't connect to > X11 window > server using ':0.0' as the value of the Display variable. > at sun.awt.X11GraphicsEnvironment.initDisplay(Native M

Serialization:)

1999-11-30 Thread jbaker
Do Sun have any plans for long term persistence of objects that have been serialized? The serialization is a lovely idea, but the incompatibility between different Jdk's, and recompiled objects, is a real pain. Oh, thanks for confirming the Linux/Win javax.swing.JEditorPane serial uid for me.

Re: More fun with serialization:)

1999-11-30 Thread Juergen Kreileder
> jbaker writes: jbaker> Back onto serialization. Is the Linux 1.2.2 Jdk compatible jbaker> with the Windows 1.2.2 Jdk? Although it's easy for me to jbaker> make sure both Jdks are using the same set of classes I jbaker> have built, it's a little more difficult when I have to

Problem with HW acceleration

1999-11-30 Thread Zdenek Kabelac
Hello I'd like to know, why my current HW rendering is so slow with this latest jdk1.2.2 with java3d I'm running dual celeron + MGA400 - with glx hw acceleration (with slightly modified libGL) and this setup appears to be very slow compared with standard libMesa libraries - I'm using just the O

Re: Problem in running Jdk1.2.2rc2 Demo on redhat 6.1

1999-11-30 Thread Ingo Rockel
On Tue, 30 Nov 1999, John Louis wrote: > Hi, > I try to run the SimpleExample, it give me these error: > > Exception in thread "main" java.lang.InternalError: Can't connect to X11 window > server using ':0.0' as the value of the Display variable. > at sun.awt.X11GraphicsEnvironment.initD

More fun with serialization:)

1999-11-30 Thread jbaker
Hi again, Back onto serialization. Is the Linux 1.2.2 Jdk compatible with the Windows 1.2.2 Jdk? Although it's easy for me to make sure both Jdks are using the same set of classes I have built, it's a little more difficult when I have to use classes such as: javax.swing.JEditorPane (which it's cl

Problem in running Jdk1.2.2rc2 Demo on redhat 6.1

1999-11-30 Thread John Louis
Hi,     I try to run the SimpleExample, it give me these error:   Exception in thread "main" java.lang.InternalError: Can't connect to X11 window server using ':0.0' as the value of the Display variable.     at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)     at s

Re: Fun with serialization

1999-11-30 Thread Michael Sinz
On Tue, 30 Nov 1999 11:22:01 +, [EMAIL PROTECTED] wrote: >Hiya, > >After yesterdays fun with getting a Frame Buffer working (thanks for the >advice), Im now having fun with serialization. I am using a Win1.2.2 JVM on >the client end, and the rmi server is using the Blackdown1.2.2 or 1.2 >(wha

Re: Select/poll for java-linux

1999-11-30 Thread Juergen Kreileder
> Scott Murray writes: Scott> On Mon, 29 Nov 1999, Artur Biesiadowski wrote: >> Has anybody implemented it already ? Sun does not seem to try >> to solve the subject, but I suppose that it should be possible >> to add select like functionality on top of current jdk >> (inc

Ref: Subject: Fun with serialization

1999-11-30 Thread jbaker
Oh, sorry to bother you with the Serialization problem. It turned out to be a javac compiled class on the client side, and a jikes compiled class on the server side. I wasn't aware that would cause the class not compatible exception. If only JBuilder would let me use Jikes as the compiler. Evil th

Fun with serialization

1999-11-30 Thread jbaker
Hiya, After yesterdays fun with getting a Frame Buffer working (thanks for the advice), Im now having fun with serialization. I am using a Win1.2.2 JVM on the client end, and the rmi server is using the Blackdown1.2.2 or 1.2 (whatever I can get to work:-). When I try to return an object from the