Re: JDK 1.2 Support for CORBA

1998-09-28 Thread Paul V. Drobnich
> I'm looking for JDK1.2 for Linux as I need CORBA support. I was > wondering what the timeline is for the release and whether I can help > with the porting. Thanks Probably you don't need JDK1.2 for playing with CORBA. There are few CORBA2 compatible ORBs writen completely in java who

getResourceAsStream on Class-Files

1998-09-28 Thread Bernd Wengenroth
Hello, I want to load class-files with the ClassLoader.getResourceAsStream( String )-methode. i.e. xxx.getResourceAsStream( "package/myClass.class" ); It's works fine on files without a ".class"-postfix. But files with this prefix are not opened (the methode reports null). If i copy the same fi

Re[2]: Can Java Catch Signals ?

1998-09-28 Thread peter . pilgrim
[EMAIL PROTECTED] wrote: > yes, u can do that, but the underlying native I/O already uses SIGNALS to catch >SIGIO, > SIGALRM which is used to impliment the green_threads/context switching of java (fake) > threads. So be carefull what sigs u catch, or turn off. > > How would I do that though ?

Re: Re[2]: Can Java Catch Signals ?

1998-09-28 Thread Nelson Minar
>What I would like is just a very simple SignalCatcher for SIGTERM, >SIGQUIT, SIGHUP and SIGINT: just four signals. I want to catach them >in Java, and write the capture to a systems log. So that at least >overnight personnel would know how my java batcher died . Someone wrote just that for Linux

Re: Re[2]: Can Java Catch Signals ?

1998-09-28 Thread John Baker
On Mon, Sep 28, 1998 at 10:00:45AM -0400, Nelson Minar wrote: > >What I would like is just a very simple SignalCatcher for SIGTERM, > >SIGQUIT, SIGHUP and SIGINT: just four signals. I want to catach them > >in Java, and write the capture to a systems log. So that at least > >overnight personnel wo

Re: Re[2]: Can Java Catch Signals ?

1998-09-28 Thread Ernst de Haan
Hi all gurus! > [EMAIL PROTECTED] wrote: > > > Can Java catch signals ? > > > > Could the Java Native Interface be used to help Java catch signals ? > > > > * prelim design in my head * > > I have a huge script that run configurable batch jobs sequently over several hours. > > I would like to r

Re: getResourceAsStream on Class-Files

1998-09-28 Thread Juergen Kreileder
> Bernd Wengenroth writes: > Hello, I want to load class-files with the > ClassLoader.getResourceAsStream( String )-methode. > i.e. xxx.getResourceAsStream( "package/myClass.class" ); > It's works fine on files without a ".class"-postfix. But files with > this prefix are not opened (the me

Re: getResourceAsStream on Class-Files

1998-09-28 Thread Paul Reavis
Juergen Kreileder wrote: > > > Bernd Wengenroth writes: > > > Hello, I want to load class-files with the > > ClassLoader.getResourceAsStream( String )-methode. > > > i.e. xxx.getResourceAsStream( "package/myClass.class" ); > > > It's works fine on files without a ".class"-postfix. But fil

Re: getResourceAsStream on Class-Files

1998-09-28 Thread Rob Nugent
Java Soft broke this function in JDK 1.1 (some time after JDK113, I think, if memory serves me correctly). I think it is fixed in JDK 1.2, as I raised this a JavaSoft bug 4138221, which I CAN'T LOOK AT, since it somehow got logged as a 'security' bug. Rob Bernd Wengenroth wrote: > Hello, > > I

Re[2]: Can Java Catch Signals ?

1998-09-28 Thread peter . pilgrim
Last week Trent Jarvi wrote: > http://www.interstice.com/~kevinh/projects/javasignals/index.html Hi Kevin I will let you know if I get this working with Solaris, but it is low priority at the mo ... Cheers Peter -- import java.std.disclaimer.*; // "Dontcha just love the API, baby

help with swing!

1998-09-28 Thread psteele
Hello Please help! I am having the following problem using swing-1.0.3 with blackdown's jdk1.1.6 under RedHat linux 5.1: My profile: CLASSPATH=.:/opt/java/swing-1.0.3/swingall.jar JAVA_HOME=/opt/java/jdk1.1.6 SWING_HOME=/opt/java/swing-1.0.3 export CLASSPATH SWING_HOME JAVA_HOME When I attempt

Re: getResourceAsStream on Class-Files

1998-09-28 Thread Paul Reavis
Bernd Wengenroth wrote: > > Paul Reavis wrote: > > > > And you should be able to get around it with a custom classloader (which > > isn't as hard to implement as you might think). > > *smile*, that exactly what i want. > I want to speed up the start of plugin-applications with an own > class-loa

missing KeyEvents

1998-09-28 Thread Gary Mart \(GAM22\) admin0
I extended a TextField component by adding a KeyListener and it works just fine. But when I did the same thing with a Choice component no KeyEvents get delivered. Any reason why this would happen? Gary Mart [EMAIL PROTECTED]

Re: getResourceAsStream on Class-Files

1998-09-28 Thread Bernd Wengenroth
Paul Reavis wrote: > > Juergen Kreileder wrote: > > > > > Bernd Wengenroth writes: > > > > > Hello, I want to load class-files with the > > > ClassLoader.getResourceAsStream( String )-methode. > > > i.e. xxx.getResourceAsStream( "package/myClass.class" ); > > > > > It's works fine on files wi

Socket exceptions under 1.1.6v4

1998-09-28 Thread Paul Reavis
My Voyager-based networking works under v2 but breaks under v4 with a java.net.SocketException: Socket option unsupported I'm just trying to connect with the Voyager server at a specified port; it never even makes the connection. Localhost or LAN doesn't seem to make a difference. I'll dig more

fast multiple object creation ... can it be done!

1998-09-28 Thread B. Craig Taverner
Hi, I'm dealing with a performance issue in java where it appears that performance is noticably affected by the fact that many (thousands) of relatively small objects need to be created very quickly (multiple small memory allocations). From my C/C++ background I would have considered solving this

Re: fast multiple object creation ... can it be done!

1998-09-28 Thread Vincent Trussart
"B. Craig Taverner" wrote: > Hi, > > I'm dealing with a performance issue in java where it appears that > performance is noticably affected by the fact that many (thousands) of > relatively small objects need to be created very quickly (multiple small > memory allocations). From my C/C++ backgrou

Re: fast multiple object creation ... can it be done!

1998-09-28 Thread Michael Sinz
On Mon, 28 Sep 1998 21:34:24 +0200 (CEST), B. Craig Taverner wrote: >I'm dealing with a performance issue in java where it appears that >performance is noticably affected by the fact that many (thousands) of >relatively small objects need to be created very quickly (multiple small >memory allocat

Re: missing KeyEvents

1998-09-28 Thread Juergen Kreileder
> I extended a TextField component by adding a KeyListener and it works > just fine. But when I did the same thing with a Choice component no > KeyEvents get delivered. Any reason why this would happen? KeyEvents get delivered to Choices (at least with v4a) but there are some known problems

Re: Re[2]: Can Java Catch Signals ?

1998-09-28 Thread Jason Dillon
I ran into a rather annoying problem with this library. Perhaps someone else could confirm the same problem. I wrote a rather large distributed threaded network management system. When the system was started up lots of log messages were sent via tcp to a logging server, and the rest of the syste

About the JDK 1.2

1998-09-28 Thread Kontorotsui
Hello, my name is Andrea Controzzi (I'm male) and I write from Italy. I subscribed the list to follow the development of the JDK for Linux. I'm near to graduate in Computer Science, so I have experience with C, C++ and of course Java. I did some exams also on operating systems, including

Re: help with swing!

1998-09-28 Thread Pascal Chong
I have a similar problem when I run Jikes ! But my Swing programs compile and run OK using the Blackdown Java compiler. I am using Slackware 3.5 and my environment setup is shown below : export CLASSPATH=.:/usr/local/jdk1.1.6v4a/lib/classes.zip:/usr/local/swing-1.0.3/li b/swingall.jar and as fo

Re: help with swing!

1998-09-28 Thread Juergen Kreileder
> "psteele" == psteele <[EMAIL PROTECTED]> writes: psteele> Hello Please help! I am having the following problem psteele> using swing-1.0.3 with blackdown's jdk1.1.6 under RedHat psteele> linux 5.1: My profile: psteele> CLASSPATH=.:/opt/java/swing-1.0.3/swingall.jar pste

Re: fast multiple object creation ... can it be done!

1998-09-28 Thread mclai
Craig, Like C/C++, Java uses strong type constraints to prevent programmers from accessing data in an inconsistent way (e.g. casting objects). Unlike C/C++, Java prevents you from having direct access to program memory. In C/C++, it is common to use a pointer to locate a variable in memory a

Huge initialized static data blocks & java.util.zip

1998-09-28 Thread Thomas Okken
Hi all, I'm working on something that requires a static array of almost 400k. I figured that the best way to initialize this array would be to compress the data, add a static array with an initializer to put the compressed data there (gzip compresses it to about 22k, which seems reasonable), and

stop mail

1998-09-28 Thread Alan Yung
please stop mailing for now thanks