Re: Font Problems

2000-01-04 Thread Cynthia Jeness
This turned out to be "operator error". I had forgotten that the accelerated server that I am using from Xi graphics does not used the standard XF86Config file but rather its own file, "Xaccel.ini". As soon as I updated the font path for the URW fonts in this file, then the fonts were handled as

heap space and performance

2000-01-04 Thread Michael E. Moores
i wonder if someone can provide some insight on the garbage collection and heap size. i wrote a program (below) in a loop and recorded the response times and heap size. when i started it, i was able to run the loop 125 times per second, using 11% CPU. after several minutes, i ran out of memory (

date problem

2000-01-04 Thread Gangmeng Ji
Hi all, I have a problem with the Date (java.util.Date) on Blackdown JDK118 on Redhat Linux. I checked the OS with date command line, which prints the correct local time. What I have figured out is that JVM misinterprets time zones. What I get from the command line is " Wed Jan 5 11:17:07 EST 2

Re: compiling the JDK

2000-01-04 Thread Jeff Galyan
Michael, The easiest way to compile the Blackdown port is if you use the 'patchomatic.sh' script to apply their patches. It extracts the archives and sets up the directories for you (and is *way* faster and better than doing it by hand). Just be sure to edit the patchomatic.sh script to set up th

Re: Errors in Standard In

2000-01-04 Thread Nathan Meyers
Christian Biermann wrote: > > Hello > > I have a problem with a proxy Server which is written in java.When I get > error-messages like "NoRoutetoHost-Exception", they are thrown out on my > console (stdin).How can I route this error-messages into a file or to > /dev/null? > I think this is a opt

Errors in Standard In

2000-01-04 Thread Christian Biermann
Hello I have a problem with a proxy Server which is written in java.When I get error-messages like "NoRoutetoHost-Exception", they are thrown out on my console (stdin).How can I route this error-messages into a file or to /dev/null? I think this is a option of the javaVM and not one of the progra

QuoteGrabber-2.0-BETA14 released under the GPL

2000-01-04 Thread Louis-David Mitterrand
A new release of the QG is available at: http://www.aparima.com/quote/download.html 2000-01-04 QuoteGrabber 2.0-BETA14 release. The QuoteGrabber is now free software, released under the GPLv2. It means is that you can freely copy and distribute it, however if you modify it and wish to distribut

Font Problems

2000-01-04 Thread Cynthia Jeness
I am running JDK 1.2.2 on RedHat Linux 6.1. My font path (as provided by chkfontpath --list) includes among others: /usr/X11R6/lib/fonts/URW These are the fonts that I downloaded from the gimp site. These fonts include "-Adobe-Zapf Dingbats-..." When I run the SwingSet application, I ge

compiling the JDK

2000-01-04 Thread Michael E. Moores
it looks like i will have to compile the JDK to figure out my glibc2.1.2 troubles. i read the page http://www.place.org/~stevemw/java/FAQ/README.linux.src.txt is this the latest data on compiling? can i use this to compile the latest versions? thanks for the input! i don't see others getting m

Re: trouble setting breakpoints in my jni code with ddd/gdb

2000-01-04 Thread Nathan Meyers
SHUDO Kazuyuki wrote: > If you'd like to use green threads usually, you may > modify the bin/.java_wrapper file. Modify the following > line as you like: > > DEFAULT_THREADS_FLAG=native It should also work just to set (and export) the environment variable THREADS_FLAG=green. Nathan SHUDO Ka

Re: JDK1.2 installation on Linux...

2000-01-04 Thread Jacob Nikom
1. Where to obtain JDK 1.2 for Linux? http://www.blackdown.org/ 2. Go to "Download the JDK for Linux" link 3. Find appropriate ftp site 3. Go to the JDK1.2/i386/pre-v2/glibc2.1 directory 4. Middle click on jdk1.2pre-v2-debug.tar.bz2 file 5. Menu opens - download the file 6. Unzip the file with b

Re: JDK1.2 installation on Linux...

2000-01-04 Thread jack . w
first bunzip2 then tar xvv tarfile     -Original Message-·¢¼þÈË: Pramila <[EMAIL PROTECTED]>ÊÕ¼þÈË: java-linux <[EMAIL PROTECTED]>ÈÕÆÚ: 2000Äê1ÔÂ4ÈÕ 22:21Ö÷Ìâ: JDK1.2 installation on Linux... Hi! ,       I just downloaded the file jdk

Re: trouble setting breakpoints in my jni code with ddd/gdb

2000-01-04 Thread SHUDO Kazuyuki
Richard Johnson wrote: > Program received signal ?, Unknown signal. > 0x4012eb6e in __sigsuspend (set=0xb2a8) at >../sysdeps/unix/sysv/linux/sigsuspend.c:48 I guess your GNU debugger (gdb) doesn't support LinuxThreads which JDK uses as native threads. I can get the following message with gd

JDK1.2 installation on Linux...

2000-01-04 Thread Pramila
Hi! ,       I just downloaded the file jdk1.2pre-v2.tar.bz2 , but I don't know how to install it.       Anyone could please let me know how / from where I can install JDK1.2 on Linux...   Thanks & Regards Pramila

java.lang.NoClassDefFoundError:

2000-01-04 Thread M.N.Balaji
hai, I have installed JDK 1.2.2 on Redhat 6.1, i am able to compile and run java programs , but rmi is giving problems, when i type rmic it is giving the following error. Please tell me how to rectify the problem. java.lang.NoClassDefFoundError: sun/rmi/rmic/Main at java.lang.Throwable

RE: JDBC & mSQL

2000-01-04 Thread Edson Carlos Ericksson Richter
An applet can do connection only to host from are served the page where applet is inside. And, you must provide that classes for connection. See docs for tag about putting classes accessible for browsers. IMPORTANT: If you are developing for Java 2 plataform, you must use Java Plug-in - not

RE: How do you use JDK?

2000-01-04 Thread Edson Carlos Ericksson Richter
Hi! All that you need to do your work is like this: import java.util.Date; public class Clock2 extends Thread { public static void main( String [] args ) { new Clock2( ); } public Clock2( ) { this.start( ); } public void

error when creating a window using invocation api

2000-01-04 Thread benito . meeuwis
Hi, I created a Java Virtual Machine in C++. This Virtual Machine starts a Java application. This works, but when I try to start a Java application which shows windows, I get the following error : /usr/jdk117_v3/lib/i686/native_threads/libawt.so: undefined symbol: xmDrawingAreaWidgetClass (li

Re: trouble setting breakpoints in my jni code with ddd/gdb

2000-01-04 Thread richard johnson
On Mon, 03 Jan 2000, you wrote: > richard johnson wrote: > > > > Program received signal ?, Unknown signal. > > 0x4012eb6e in __sigsuspend (set=0xb2a8) at >../sysdeps/unix/sysv/linux/sigsuspend.c:48 > > 48 ../sysdeps/unix/sysv/linux/sigsuspend.c: No such file or directory. > > The "no

Re: idltojava for linux

2000-01-04 Thread Jo Uthus
Eric Mitchell wrote: | How much work is involved in porting idltojava to run on | Linux? Is it just a matter of tweaking some lex/yacc code | (as someone suggested earlier)? Has anyone tried it? How | would someone volunteer to help this process? I believe that the idltojava-compiler for ja

JDBC & mSQL

2000-01-04 Thread Urivan Saaib
After figthing a while with the odbc driver for Linux and wasting lot of time configuring the windows machine, i decided to migrate the database to mSQL, but now that i got a functional code (access and reads the data), when i insert it into the applet, it doesn't work... Is there anything extra t