Can you use Java as a Job Scheduler?

1998-11-23 Thread peter . pilgrim
[WORK RELATED] Before I jump off the deep end. I presume there is nothing to prevent Java being used a job scheduler. That is the JVM creates say 3 worker threads and each of these worker thread executes a process like `/bin/ls -l ; sleep 60'. I asked because I have called `Process.waitFor()' t

[CANCEL] Re: Can you use Java as a Job Scheduler?

1998-11-23 Thread peter . pilgrim
Of the course, the thread won't block itself if I do not put `synchronized run' in the Runnable object!!! EOT __ Reply Separator _ Subject: Can you use Java as a Job Scheduler? Author: Peter Pilgrim at London Date:23/1

Commercial JAVA IDE that runs in Linux

1998-06-18 Thread Peter Schuller
Hi! Does anyone know a good commercial Java IDE that runs in Linux? Prefarably written in Java. All the supposedly good ones, like JBuilder and Visul Cafe, are for Windoze only... Thanks! / Peter Schuller --- WWW: hem.passagen.se/petersch/ (might

RE: Xlief, now called NetBean. Very impressive.

1998-06-18 Thread Peter Schuller
. It uses the JavaSoft "official" style, which I despise to be perfectly honest. I can't stand the way they place the brackets. Anyway.. It's just a BETA version! I'm sure the final will be to my liking. Maybe even worth buying? / Peter Schulle

Re: Getting a full JVM thread dump

1998-11-24 Thread peter . pilgrim
Have you tried CTRL-\ ? pete __ Reply Separator _ Subject: Getting a full JVM thread dump Author: craig ([EMAIL PROTECTED]) at lon-mime Date:24/11/98 18:34 Hi, Does anyone know how to get a full JVM thread dump under linux?

Re: Netscape/CLASSPATH question

1998-11-25 Thread peter . pilgrim
I had to name it explicitly at work (sparc-sun-solaris-2.5.1) and home (i586-slackware-linux-gnulib1) to get Netscape to work. export CLASSPATH=...:${MOZILLA_HOME}/java/classes/java40.jar:... Pete __ Reply Separator _ Subject: Re: Ne

Re: Netscape/CLASSPATH question

1998-11-25 Thread peter . pilgrim
Excuse me. Yes Micheal is absolutely right, about unsetting CLASSPATH. Must you put a jar in the ${MOZILLA_HOME}/java/classes? __ Reply Separator _ Subject: Re: Netscape/CLASSPATH question Author: Michael.Sinz ([EMAIL PROTECTED]) at lon

Re: JWindow.setLocation()

1998-11-27 Thread peter . pilgrim
I have used JWindow to implement a splash screen for Xenon-SQL. I had a bit of trouble with `setBounds()' after I packed it and set it the middle of the screen. I turns out that just packing worked on Linux/KDE but failed on Solaris/CDE Motif. I have to perform a setSize() and pack() and setVi

Re: Dialogs in applets [finding the nearest frame]

1998-12-02 Thread peter . pilgrim
Stick in this in your main applet code: static Component getAncestorFrame( Component comp ) { while ( comp != null && !instanceof Frame ) comp = (Component)comp.getParent() ); return (comp); } Pete __ Reply Separator _

Re: swing-1.1beta3

1998-12-03 Thread peter . pilgrim
Until JDK 1.2 arrives for Linux you include the path to swing.jar in your CLASSPATH explicitly a la export SWING_HOME=/usr/local/swing-1.1-beta3 export CLASSPATH=.${SWING_HOME}/swingall.jar Pete __ Reply Separator _ Subject: swing-1.

News group

1998-12-03 Thread Peter Kovacs
Is there any newsgroup about the linux port of java? I am specifically interested in when the JVM port for linux will support real multi-threading. People on linux newsgroups tend to say that linux has already has native thread support. Thanx Peter

Re: JFrame

1998-12-04 Thread peter . pilgrim
Use a JWindow instead of a JFrame, but see put the logic to set a reasonable window size in overriden `setPreferredSize()' In this example I set up a maximum size limitation: public class PetesSplash extends JWindow private JLabel labelImage; private JLabel copyLabel private Im

Re: Important: Java 1.2 licencing changes

1998-12-08 Thread peter . pilgrim
Mrfr! I though a web hacker had crack www.javasoft.com at first!!! Question is though was Steve in on it? Pete __ Reply Separator _ Subject: Important: Java 1.2 licencing changes Author: thomas ([EMAIL PROTECTED]) at lon-mime

Reading (All) Environment Variables in W95/NT

1998-12-14 Thread peter . pilgrim
I am getting some requests from NT users on an application that I wrote on a Java/Linux environment. I have a Java application that runs fine on Unix and I am trying to get to run perfectly on NT. I have a run time shell script that passes the entire environment to the JVM using a system prope

Re: Reading (All) Environment Variables in W95/NT

1998-12-14 Thread peter . pilgrim
I think a small setup program that generates this default property file maybe the answer too. I am thinking of a simple JTable name and value. Am not sure if I follow you. Do you mean that I should set this in my application. Because then we have a chicken and egg scenario. I want to use the pr

Re: Reading (All) Environment Variables in W95/NT

1998-12-14 Thread peter . pilgrim
Thanks well I found my copy of jikes which has a `jd.bat' file: pilgpe@poppy [58] > c jikes-1.11/jd.bat @echo off rem Set JD and JDK to match the appropriate installation directories on your system. rem set JD=c:\derek\jbin\jd.zip set JDK=c:\java\lib\classes.zip rem echo on java -nojit -c

Re: Reading (All) Environment Variables in W95/NT

1998-12-15 Thread peter . pilgrim
load that file and make it a environment settings default. Peter __ Reply Separator _ Subject: Re: Reading (All) Environment Variables in W95/NT Author: summer ([EMAIL PROTECTED]) at lon-mime Date:14/12/98 23:09 3

Request For OS Sys Props [was Re: Reading (All) EnvVars ]

1998-12-16 Thread peter . pilgrim
System.out.println( "os.version = "+ System.getProperty( "os.version")); Somebody must have already have done this, if not I publish the results in a web table in 1999! Peter Pilgrim __ Reply Separator _ Sub

Re: Request For OS Sys Props [was Re: Reading (All) EnvVar

1998-12-16 Thread peter . pilgrim
Thanks. I had no know idea if "." prefix directories are reasonable of not reasonable on Win 95/98/NT. Note this is just UNIX convention, that makes sense for UNIX like operating system, because of the default de facto behaviour of the `/usr/bin/ls' program. In short you do not mind if a progra

problems with native interface

1998-12-16 Thread Peter Godman
using the native threads implementation, but had problems with it. Thanks in advance, Peter Godman

RE: JDE & (emacs or xemacss)?

1998-12-24 Thread Peter Schuller
> Choices, choices, so many choices! Anybody got any preferences on > emacs or xemacs for java? XEmacs simply because the GUI is much nicer, and I'm used to it (even though I'm using vim at the moment). / Peter Schuller E-Mail: [EMAIL PROTECTED] Web: http:/

TYA and Swing; What was the #define again?

1999-01-03 Thread Peter Schuller
Hi! What was that #define that were supposed to be commented out to get TYA 1.2 to work with Swing, even though it tries to disable JIT during init? Thanks! / Peter Schuller E-Mail: [EMAIL PROTECTED] Web: http://hem.passagen.se/petersch

Re: Java Shell

1999-01-04 Thread Peter Schuller
't keep a JVM running all the time (again, AFAIK). But isn't there a Java application somewhere that allows you to run multiple applications in one JVM? I know there is one, but I can't remember what it was called. / Peter Schuller E-Mail: [EMAIL PROTECTED] Web

1.1.6-v2-libc5 - classpath bug?

1998-07-01 Thread Peter Schuller
.6 which contains jdk1.1.6-v2-libv5. If I remove jdk1.1.6 and unpack 1.1.5 instead, it finds the file and it runs fine. Am I missing some major change in CLASSPATH enterpretation in 1.1.6 compared to 1.1.5, or is it a bug? Thanks! / Peter Schuller Windows - Linux on drugs. -

(possible bug) "Invalid argument" in native code

1999-01-09 Thread Peter Schuller
after an unexpected disconnect that the problem occurrs. I am unable to figure out what I am doing wrong. Frankly, I don't have a clue. 1) Could this be a JDK bug? 2) Does anyone know how I might fix it? (if it's not Linux related, I guess that should go off the mailinglist) Thanks

Re: RMI-Question

1999-01-12 Thread peter . pilgrim
Soln: Use the RMI itself to implement an authentication protocol yourself ie get your clients to use a username and password if possible. The server verifies the username and password. In any case why would want to restrict the service just by machine name (host)? Far better to use a proper aut

How to get Netscape 4 working Swing and JMF Applets?

1999-01-13 Thread peter . pilgrim
I am trying to get Netscape to work with Swing and JMF. What is written in the README file does not work at all. Java Applet Support: Java Applet support is available for all Unix platforms. To run Java applets with the Java-enabled version, Communicator needs to

RE: How to get Netscape 4 working Swing and JMF Applets?

1999-01-14 Thread peter . pilgrim
Thanks alot. Netscape's README is a bit of nonsense with regards to the CLASSPATH. If you make sure that the CLASSPATH is unset then everything work. I though about install the jars in $MOZILLA_HOME/java/classes or making symbolic links to the jars from $SWING_HOME and $JMFHOME but really I thin

Re: How to get Netscape 4 working Swing and JMF Applets?

1999-01-14 Thread peter . pilgrim
I did all of this and it does work under Linux or Solaris. I think copying the jar to $MOZILLA/java/classes is best. Pete __ Reply Separator _ Subject: Re: How to get Netscape 4 working Swing and JMF Applets? Author: pridemor ([EMAI

PC-PLUS Magazine UK

1999-01-16 Thread peter . pilgrim
FYI PC PLUS Magazine UK will happily do us all of us who live in the UK a big favour and download the Java 2 Platform for LINUX and burn it on CD ROM ( when the porters release it). So look out for a copy of the mag. It's big timesaver for me. I still have dial up. In the February Issue which

Re: Swing Core Dump...?

1999-01-23 Thread peter johnson
It's not xfree, per se. But your new kernel may require libc6 (glibc); this would mean you have to install the glibc version of JDK. If this is the problem, you may want to go ahead and install 1.1.7 while you're at it. TJ Saunders wrote: > Hello, all. Up until recently, I was doing just fi

Re: Is there a good java Linux debugger?

1999-01-24 Thread Peter Harris
Try Nedit. At 1:00 AM +1100 24/1/99, Colin McDonald wrote: >Is a java debugger the same thing as a java editor. I'm looking for a >Java Editor (preferable with Colours) to use in Linux. Currently I use >Kawa in Win 32, and I am looking for something similar to this for >Linux. > >Thanks > >Chr

Re: little endian & big endian

1999-02-02 Thread Peter Naulls
're in MSB in classfiles, but internally, the JVM will whatever is the platform's way round, otherwise it'll have to convert everytime it does things like addition (and that would of course be slow). On a small-endian machine, the values would only be converted to big-endian

Re: little endian & big endian

1999-02-03 Thread Peter Naulls
-endian architecture I would need to change around 5 functions - 3 which read 2,4 and 8 byte quantities from classfiles, and 2 others which write binary values to files (there may be a few others) but that's it. Peter -- +---

Could not download jdk1.1.6v2

1999-02-03 Thread Gaze, Peter
Steve, I could not download jdk1.1.6v2 from your site after trying all of the hyperlinks on http://java.blackdown.org/~sbb that link to http://java.blackdown.org/java-linux/Mirrors.cgi The response was that the requested url was not found. Hope you can help. Peter Gaze Network Analyst

Re: little endian & big endian

1999-02-04 Thread Peter Naulls
out.write((v >>> 24) & 0xFF); out.write((v >>> 16) & 0xFF); out.write((v >>> 8) & 0xFF); out.write((v >>> 0) & 0xFF); written += 4; } You can see that it's written out in MSB, regardless of how the

Jittering sound playing on Java/Linux

1999-02-04 Thread peter . pilgrim
Fellows When the JVM plays .au files on my machine it seems to be suffering jittering and glitches. I think this happens because the sound playing green thread is not getting enough CPU to push mu law bytes down to /dev/audio. I am using black-down libc5 jdk1.1.7-v1a and Slackware Linux kerne

Re: Another JDK 1.2 Status Report

1999-02-05 Thread peter . pilgrim
Thanks for the infos. Question are green thread slower than native threads ? Would this affect the performance of the forthcoming Java Sound API and Java Media Framework API. Or am I barking (mad) up the wrong tree? Pete __ Reply Separator _

Re: JavaSound and JMF performance [was Re: Another JDK 1.2

1999-02-05 Thread peter . pilgrim
When I last looked at the Java Medio Homepage at the Javasoft site I can recall that the audio sound rendering engine could work well on Pentium 90 at only 20% of the level. AND AND it could handle up to 64 channels. I will need to see it to believe it methinks. The JMF will need to native librar

RE: Another JDK 1.2 Status Report

1999-02-06 Thread Peter Schuller
e with native threads, is it? I mean, non-Java processes/threads don't have that problem (you don't see g++ hanging the entire system until it's finished compiling, do you?). / Peter Schuller man(1) - a man's best friend! E-Mail: [EMAIL PROTECTED] Web: http://hem.passagen.se/petersch

RE: NetBeans

1998-07-10 Thread Peter Schuller
ork. That's my experience at least. Unfortunately, NetBeans hangs "now and then" after it's up and running. and consumes A LOT of CPU. Around 40% by just sitting there doing nothing , on my P133. / Peter Schuller

Re: Keyboard mnemonic problem

1999-02-11 Thread peter . pilgrim
What's an XBD? Peter __ Reply Separator _ Subject: Re: Keyboard mnemonic problem Author: cbsmith ([EMAIL PROTECTED]) at lon-mime Date:11/02/99 03:19 On Thu, 11 Feb 1999, Jackie Manning wrote: > On my system, RH 5.1 up

Re: Keyboard mnemonic problem

1999-02-12 Thread peter . pilgrim
Whenever I start Motif applications on my linux box the [RETURN] does not work, but strangely enough Control-J work. I basically have given up. Does XBD (X keyboard extension) cure this problem ? How can I see XBD ? Peter __ Reply Separator

Help me compile for Native Methods?

1999-02-15 Thread Peter Gutowski
ntf ( "Hello Native World" ); } All of this is *similar* to the example in the book but I am not sure what I need to do to make it work. Any ideas? Peter Gutowski email: [EMAIL PROTECTED] http://www.powervue.com/~peterg

RE: Memory consumption

1999-02-20 Thread Peter Schuller
Java running as I write, and the process' total memory size is ~4.5 meg. / Peter Schuller Windows 98 supports real multitasking. It can boot and crash simultaneously. - --- PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]>' E-Mail: [EMAIL PROTECTED] Web: http://

Question about Java Plug-in for Linux

1999-02-22 Thread Peter Eriksson
the server. This is the URL that it is trying to locate: http://www.blackdown.org/activator/index.html My question is where can I find the plug-in? Regards, Peter Eriksson -- Peter Eriksson email: [EMAIL PROTECTED] Intermec Printer AB, Box 123Tel: +46 31

System.runFinalizersOnExit

1999-02-23 Thread peter . pilgrim
`` System.runFinalizersOnExit(true) '' Does this work/implemented on Blackdown JDK 1.1.7-1a or not? I find it does __not__ work for me ? Meaning no finalizers are called when the JVM terminates. However I tested the same code on Solaris/Sun JDK and it works! Anyone know the reason why? ( An

Re: System.runFinalizersOnExit

1999-02-23 Thread peter . pilgrim
Well I hope you they invent the API `System.onJVMExit( ExitNotifiable myIWannaBeNotifiedAtExitObject )' Otherwise how can we be sure that resources are released when the JVM exits. That temporary file creating utility object class will be soon redundant then, won't it? ( I guess this also touc

RE: System.runFinalizersOnExit

1999-02-23 Thread Peter Schuller
t too. The JDK docs say that it's unsafe etc, but *why*? What is so difficult about implementing it? The way I see it, the JVM has to keep track of when all referces to a given object has been eliminated, right? So what's stopping the JVM from executing the finalizer before throwing the obj

Sticky widgets / AWT / jdk117a.

1999-02-23 Thread Peter Godman
verse happens (depending on the initial state). I'm guessing that the widget never processed the buttonup event. Has anyone else had this problem? Other than this, the implementation seems quite reliable and stable. If you could please reply by email also, I'd be grateful. Thank

Re: Linux World

1999-03-05 Thread peter johnson
more reasonable way than Swing or Java3D. Yes! there is garbage collection, but not asynchronous - just call System.gc() at convenient points in your code - prevents those nasty animation glitches and strange 3 second pauses in execution. Peter Johnson [EMAIL PROTECTED] -

Sticky widgets / AWT / jdk117a.

1999-03-05 Thread Peter Godman
is problem? If you could please reply by email also, I'd be grateful. Thanks, Peter Godman -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: JDK1.2 size question

1999-03-06 Thread Peter Schuller
t JDK 1.2 seems to work fine on Debian 2.0, except for a few probs (thought I'd mention it considering one's half expecting it to not run at all, given the README :). / Peter Schuller - --- PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]>' E-Mail: [EMAIL PRO

Dynamically modifying CLASSPATH

1999-03-08 Thread peter . pilgrim
("java.class.path"); propsJVM.put("java.class.path",ncp); The next step is thus try { Class.forName("org.xenon.FunkyDancer"); } catch ( ClassNotFoundException e ) { ... } This does not work for me on JDK1.1.7 sparc-sun-solaris-2.5.1 ? But can

Re: Dynamically modifying CLASSPATH

1999-03-08 Thread peter . pilgrim
Don't worry I have figured it out. Peter __ Reply Separator _ Subject: Re: Dynamically modifying CLASSPATH Author: sfloess ([EMAIL PROTECTED]) at lon-mime Date:08/03/99 13:24 Peter: You can't modify the system

Catching operating system signals

1999-03-09 Thread Peter Kovacs
Is there any facility (Java API call) which can be used to catch operating system signals sent to the Java Virtual Machine and do whatever deemed necessary upon reception of a specific signal? Any help appreciated. Peter

Clipboard cut & paste and JVM/X/Swing

1999-03-09 Thread peter . pilgrim
Clipboard interaction between JFC/Swing and other XFree86 apps Does the JVm application cut & paste between the CLIPBOARD buffer and/or the PRIMARY buffer ? Pete -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Implementating ClassLoader.getResource?

1999-03-10 Thread peter . pilgrim
andler can find the resource and return an InputStream to it. HOWEVER IT ONLY EVEN FIND RESOURCES THAT ARE IN THE ORIGINAL "CLASSPATH". Do I have to write URLStreamHandler object myself? Peter -- To UNSUBSCRIBE, email

Re: Implementating ClassLoader.getResource?

1999-03-10 Thread peter . pilgrim
he 7th one and get the fully qualified filename to it say "/opt/my/loard/frogger/hendrix.zip' and then retrieve the zip file entry and then get the input stream for it. And that your custom URLStreamHandler witten done. The only problem is how do you change the URL stream handler factor

Re: Magician pulled off the market

1999-03-14 Thread peter johnson
esn't just want to beat microsoft in the marketplace - sun wants to be microsoft. It's really too bad, since SUN (Stanford University Network) wouldn't exist without free (in the FSF sense) software. Peter Johnson [EMAIL PROTECTED]

Re: How to create a NetworkClassLoader in JDK1.1.x?

1999-03-15 Thread peter . pilgrim
There is a complete Network Class Loader example in "Java Network Programning" published by O'Reilly associates. A very good book worth the money Peter Pilgrim __ Reply Separator _ Subject: Re: How to create a Networ

Re: Implementating ClassLoader.getResource?

1999-03-15 Thread peter . pilgrim
esources (ie GIF, HTML, JPEGs and AUs) also within the JAR file. Anyway the idea for the custom stream handler came from the O'Reilly `Java Network Programming' book as I said before. This is place where I will stop. Peter __ Reply Separator _____

Re: How to create a NetworkClassLoader in JDK1.1.x?

1999-03-15 Thread peter . pilgrim
No do not have source code on disk. I think O'Reilly puts all source code from their book up on their ftp site. Is it `ftp://ftp.ora.com' or `ftp://ftp.oreilly.com' ? Peter __ Reply Separator _ Subject: Re:

Java3D and JDK 1.1.6v7 on Linux, possibly with Mesa?

1998-05-20 Thread Peter Schuller
or a general Unix version intended for Solaris. Anyone got any thought on that? Is it possible to get it to work on Linux at all? --- / Peter Schuller Computers are not intelligent. They only think they are. --- WWW: hem.passagen.se/petersch/ (might c

RE: another Linux JDK?

1998-07-10 Thread Peter Schuller
) And also, it doesn't seem to be free. If I got it right, you can call them and get a key useful for evaluation, but I think you've gotta pay for it after some evaluation period. I don't know about the latter, but the download page clearly stated that you need the key. / Peter Schuller

Re: another Linux JDK?

1998-07-10 Thread Peter Schuller
[TurboJ price] > US$2000 For that kind of money I can just by myself a faster computer instead :) / Peter Schuller

RE: NetBeans

1998-07-10 Thread Peter Schuller
code. I imagine that if I do some debugging or running it'll increase, but I don't wanna do that, as that would invite another hang. And btw, after being up-and-running for a few hours, idle, it's stopped hogging CPU. / Peter Schuller

RE: java map engines

1998-07-12 Thread Peter Harris
pt to get the basic map database - the CIA Database and The World Digitised. Peter | -Original Message- | From: B. Craig Taverner <[EMAIL PROTECTED]> | To: Java Linux <[EMAIL PROTECTED]> | Date: Thursday, July 09, 1998 2:48 PM | Subject: java map engines | | | Hi, | | Does a

RE: tya and jdk 1.1.6v2 ( was: NetBeans 2.0 beta with TYA )

1998-07-15 Thread Peter Schuller
o, what did you do? I'd love to get NetBeans working with TYA. I just dropped it because I spent more time waiting on NetBeans than coding... So now I'm doing "javac *.java" on my projects because I'm to lazy to manage Makefile:s :) --- / Peter Schuller

(no subject)

1998-07-19 Thread Peter Eddy
subscribe java-linux

hello and question about RMI

1998-07-19 Thread Peter Eddy
to address this particular problem. Here's what I get: Failed to locate native library in path: /usr/lib/jdk/lib/i686/green_threads:/usr/lib/rvplayer Aborting. (similar error message for rmiregistry) Thanks, Peter Eddy RedHat 5.0, Intel, kernel 2.0.34 JDK 1.1.6 v2 - glibc:

JDK 1.1.5 does not work under XFree86 3.3.1

1998-07-31 Thread peter . pilgrim
work with the helloworld file. It is just that when I want to run a AWT or Swing example nothing happens at all! Please tell me what am I doing wrong ? Cheers Peter -- import java.std.disclaimer.*; // "Dontcha just love the API, baby bop!" Peter Pilgrim Dept:OTC Deri

JDK 1.1.5 does not work under XFree3.3.1 and libc5.4.44

1998-07-31 Thread peter . pilgrim
a CD ROM ? Maybe it is available with Slackware 3.5, which is still libc5 based ? Any help appreciated. Have a FuNkiNG good time Peter -- import java.std.disclaimer.*; // "Dontcha just love the API, baby bop!" -+=+- Thank FuNk it's FriDAY -+=+- *NEW*

[Q] JDK's on CD ROM

1998-08-03 Thread peter . pilgrim
Just a quickie: Can you get the latest blackdown JDK on any of the CD ROM Linux distribution? Cheers Peter -- import java.std.disclaimer.*; // "Dontcha just love the API, baby bop!" Peter Pilgrim Dept:OTC Derivatives IT, Deutsche Bank (UK) Ltd, Groundfloor 133 H

RE: [Q] JDK's on CD ROM

1998-08-03 Thread peter . pilgrim
ver sloow DUN. Unless I bring the machine to work. Download to solaris box. Split the tarball into 14 pieces and then floppy disk copy x14. (Sigh) Roll on ISDN and cableware ... Cheers Peter -- import java.std.disclaimer.*; // "Dontcha just love the API, baby bop!" Peter P

Swing package for JDK1.1 will be kept as std

1998-08-03 Thread peter . pilgrim
ource: JDC Newsletter Vol. 1 No. 12 ) A couple of days a go I was contemplating writing a shell script to perform find and replace on "import" lines. Luckily I had other important things to do ;-P Cheers Peter -- import java.std.disclaimer.*; // "Dontcha just love the API,

Re: [CANCELED] jdk1.1.6 & libc.5.4.46 & XFree86 3.3.1 not working in X

1998-08-04 Thread peter . pilgrim
44:24 -0400 For everyone using libdl.so.1.9.9 and JDK 1.1.6v2. Try remove the libdl.so.1 and libc.so.5 from your $JAVA_HOME/lib/i686/green_threads/ Assuming you are using a newer libc5 like libc.so.5.4.44 of course. In any case, read the README.linux file.

Re: JDK 1.2

1998-08-05 Thread peter . pilgrim
[EMAIL PROTECTED] wrote: > Do you have any plans about porting JDK 1.2 to Linux (i386)? Or are you > waiting for the final version? A preliminar work on the beta releases > would be fine, I think - then when the final version is out, OUR final > version won't delay a lot. Firstly I am not JDK so

SwingSet demo does not go on JDK 1.1.6 v2 libc5

1998-08-05 Thread peter . pilgrim
I think this may be low priority, but worth looking into. After I installed JDK 1.1.6v2-libc.tar.gz with ld.so.1.9.9 and I also installed the Swing-1.1beta.zip. So I said set SWING_HOME=/usr/local/swing1.1-beta and let's run the SwingSet demo. It did not run. I manage to load classes and termin

Re: RE: SwingSet demo does not go on JDK 1.1.6 v2 libc5

1998-08-05 Thread peter . pilgrim
Nisha Kapoor wrote: > I tried the swing-1.0.2 demos with jdk1.1.6v2-libc and it seemed to work > just fine. May be. its the probelem with Swing-1.0.1. Did you get any > error messages ? > > Nishi > SwingSet demo did not work in Swing1.0.1 and SwingSet 1.1 Beta on my jdk1.1.6v5 libc5 copy. Previ

Re: Strange keyboard behaviour in Swing1.1beta

1998-08-07 Thread peter . pilgrim
has tabbed panes for instance. There are outstanding problems with JDialog. For example a JDialog can not pop up another JDialog. Maybe the official bug parade has the answer at sunsoft. Have a FuNkiNG good time Peter -- import java.std.disclaimer.*; // "Dontcha just love

Re: Java classes graphically

1998-08-10 Thread peter . pilgrim
A very new book : Core Java Foundation Classes Prentice Hall. This is very concise book no trivial code here, but lots real examples. It is expensive 46.99 British Pounds compared to 49.99 USDollars! I think it has the same class as the O'Reilly Motif Programming Man

Re: disappearing windows

1999-03-15 Thread Peter Graves
Sounds like you might be using -green but not specifying -Djava.compiler= to disable the JIT. This is a known problem. -Peter David Thompson wrote: > > > colleagues, > > When starting my GUI based programs they > flash the window on the screen, then the > window disapp

Creating a stub wrapper for JDK 1.2 on Linux and non-Linux

1999-03-16 Thread peter . pilgrim
to make sure that `unset CLASSPATH' ? Can anyone confirm the correctness of the above ? Of course there is no such thing as Bourne on Windows/NT boxes what is best JDK 1.2 class path for these systems. Cheers Peter -- To UNSUBSC

Re: Creating a stub wrapper for JDK 1.2 on Linux and non-L

1999-03-16 Thread peter . pilgrim
"Gee. That's great stuff. Next up, Apple Macintosh!" Seriously though, what is this Invocation API? Is it operating system specific or pure Java? Peter __ Reply Separator _ Subject: Re: Creating a stub wrapper

Swing?

1999-03-21 Thread Peter vdW
There is a link to your page from FreeBuilder suggesting that we can download the following from your site (or at least find a link to it there): Swing 1.0.x (preferably 1.0.3) But I was unable to find a mention of it at all... Maybe you could add the topic to FAQ? Indeed I do not have it instal

RE: java -X coredumps?

1999-03-22 Thread Peter Schuller
that "problem". / Peter Schuller - --- PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]>' E-Mail: [EMAIL PROTECTED] Web: http://hem.passagen.se/petersch Help create a free Java based operating system - www.jos.org. -BEGIN PGP SIGNATURE- Version: PGPfree

Re: multi JVM's mem usage in linux?

1999-03-23 Thread Peter Kovacs
Have a look at the JShell Project on http://www.ANTLR.org/showcase.html. It may or may not help you. Absolutely no warranty :). Peter Maksim Lin wrote: > I have a quick question about the jvm's memory usage in linux. For > instance if I have 3 jvm's running (all same versio

Re: multi JVM's mem usage in linux?

1999-03-23 Thread Peter Schuller
laying with the idea to write an echidna type app (as a learning experience), but never got started because I couldn't solve that simple problem :) / Peter Schuller - --- PGP userID: 0x5584BD98 or 'Peter Schuller <[EMAIL PROTECTED]>' E-Mail: [EMAIL PROTECTED] Web: http://he

Re: JDK1.2 and CORBA

1999-03-24 Thread Peter Kovacs
in combination with ORBacus.) Peter -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: KDE PLAF

1999-03-24 Thread Peter Kovacs
What is PLAF? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Can ClassLoaders Work Across Packages ?

1999-03-24 Thread peter . pilgrim
r when I explicitly specify the jar in the classpath flag it works. (#2) % java -classpath animal.jar:$CLASSPATH CustomClassLoaderLauncher animal.jar acme.apps.foobar It seems to me it is impossible for custom class loader and launcher across packages. Wh

AW: JDK 1.2 and CORBA problem on hello example

1999-03-26 Thread Kutschera Peter
Sorry, I have the same problem! BTW: Can anyone recomend a CORBA product (mico, omniorb,..) to comunicate with my Java2 program (as server as well as client)? Should later run under NT :-( Thanks Peter -- To UNSUBSCRIBE

Thread questions

1999-03-29 Thread Peter Kovacs
being able to rely on the JVM providing the minimal facility to control thread scheduling from the application through calling yield() makes threads useless? (...if you want to write portable code, which I think is one of the raisons d'etre of JAVA.) Thank you for your help.

Timer granularity

1999-03-29 Thread Peter Kovacs
On linux the granularity of the timer (GregorianCalendar.time) seems to be on millisecond level, while on Windows NT on 10 milliseconds level. Does anyone know, why? Peter -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a

Just curious (Qs about the porting proc.)

1999-03-29 Thread Peter Kovacs
Makes Sun the source code JDK1.2 for Solaris available to Blackdown? Is this code what the blackdown people are modifying for the port to linux? If so, which are the major areas where changes need to be effected? Which changes are the most difficult to get right? Peter

This works on Linux/ W95 not on NT. Why?

1999-03-30 Thread peter . pilgrim
I have some attached files. Basically Java program that launches another Java AWT program. % java Launcher It works on Linux / Windows95 not on NT 4.0. Why? Peter launch~1.jav hello~1.jav

Re: go back to gzip!

1999-04-01 Thread Peter Kovacs
jdk1.2pre-v1.tar.bz2 24457274 jdk1.2pre-v1.tar.gz26062044 Means a 6.1% better compression rate. Is it really that much improvement? If it was at least 15%... Peter John Goerzen wrote: > "David Wall" <[EMAIL PROTECTED]> writes: > &g

Re: Non mofit AWT.

1999-04-06 Thread peter . pilgrim
wt.Frame.lowerWindow() java.awt.Frame.raiseToFrontWindow() java.awt.Frame.lowerToBackWindow() int java.awt.Frame.getStackingOrder() Non of these programmatics exists (yet) to support the native window manager. Peter __ Reply Separator _ Subjec

Re: Non mofit AWT.

1999-04-06 Thread peter . pilgrim
x27; should have (some of) this support too. The point is to all this really, if this were part of the official JDK API then Java can then be use to implement some truly funky multi document interface (MDI) applications. Peter __ Reply Separator

<    1   2   3   4   5   >