how to setechochar

1999-07-28 Thread R MUTHUSWAMY
i want to get a password from the textfield i used setEchochar and i checked using echohCharIsSet() function which is sending a false output. how to do it? thanks in advance. bye, MUTHU. -- To UNSUBSCRIBE, email to [EMAIL P

swing isnt working on redhat 5.1

1999-07-28 Thread Elvenx Halid
Hi all, I setup the Java 1.1.5 for Linux on a Redhat 5.1 machine. There was no problem until I discovered that swing or other standart AWT component dont work on Redhat 5.1. Actually it compiles the code correctly, but when I execute it, a normal sized window appears but inside instead of buttons

Java-Oracle

1999-07-28 Thread Bernardo Paz Betancourt
Good morning! Is there any budy working whith Java-Oracle by the java.sql.* library? I have some problems whith the thin and oci8 DriverManager.getConnection() ´s alternatives I will be wating for I answer to expose my entiere problem. Thankyou!. Bernardo . . . PS. Does any budy knows a Oracle - L

Re: netscape 4.61, Java, Redhat 6.0

1999-07-28 Thread Zdenek Kabelac
> OK, we're getting somewhere - the libc5 and glibc versions behave > differently. Hooray. > > I tried downloading libc5 Netscape direct from Netscape, or the mirror > at > >ftp://ftp.the.net/pub/mirrors/ftp.netscape.com/pub/communicator/english/4.61/unix/supported/linux20_libc5/ > > I then f

Re: Linux Java -native numerous processes

1999-07-28 Thread Nathan Meyers
David Deal wrote: > > Thanks for the info. It's still a bit strange as to why so _many_ > threads are started. I > imaging a default thread poll is created to handle each task. Thanks > also for the timely > response. Hard to say without knowing what you're doing. If you run with profiling (

Re: Debugging Native code on Linux II

1999-07-28 Thread Matt Welsh
This is really getting into gdb questions, rather than Java questions. First, it helps if you use both java_g and be sure to compile your native library with gcc -g (so you have debugging information). "Renaming" the library to use the _g suffix isn't the point; such a library is meant to be com

Re: Linux Java -native numerous processes

1999-07-28 Thread David Deal
Thanks for the info. It's still a bit strange as to why so _many_ threads are started. I imaging a default thread poll is created to handle each task. Thanks also for the timely response. Dave David Deal wrote: > > My apologies if this question has been raised in the past. I couldn't > loc

Debugging Native code on Linux II

1999-07-28 Thread Christian Cryder
Hi folks. Thanks to all of you who have responded so far...I've made excellent progress and am almost there. Here's the scoop... 1. I've made sure the library in question is in the $LD_LIBRARY_PATH, and has been renamed to libBlah_g.so... in my case, I'm creating libTest5Native.so, and renaming i

Cut-n-paste?

1999-07-28 Thread Dustin Lang
Hi, I've been trying to get cut-n-paste working in my application (drag-n-drop works nicely, at least intra-vm). Doing a copy from netscape (via the Copy menu item) works (pasting into a textfield using CTRL-V), as does copying from my app to netscape (via a popup menu on the java side and the

Re: Linux Java -native numerous processes

1999-07-28 Thread Nathan Meyers
David Deal wrote: > > My apologies if this question has been raised in the past. I couldn't > locate any info on this topic at blackdown or on this mail list. Thanks for checking the list, even though you didn't manage to guess the lucky words to search :-). Those aren't separate processes, th

[Fwd: SIGSEGV 11* using native threads..]

1999-07-28 Thread Sree Kumar
> Hi : >Am trying to run "jre -native -cp myClasses.zip myMainClass" and am > getting > a core dump when the VM comes up.. ... (GREEN Threads work fine !) > Was running the glibc 1.1.7 v3 of blackdown jvm for x86. > > My machine info is : > Red Hat Linux release 6.0 (Hedwig) > Kernel 2.2.5-15

Re: Debugging Native code on Linux

1999-07-28 Thread Juergen Kreileder
> Matt Welsh writes: Matt> Under Linux, try using gdb and running the 'debug' version Matt> of the JVM (e.g., 'java_g' rather than 'java'). Matt> My .gdbinit has the following: Matt> set env THREADS_TYPE=green_threads Matt> set env JAVA_HOME /home/cs/mdw/src/java/dow

Re: Debugging Native code on Linux

1999-07-28 Thread Matt Welsh
No, 'dbx' is a debugger similar to 'gdb'. It's not a Java debugger like jdb. Under Linux, try using gdb and running the 'debug' version of the JVM (e.g., 'java_g' rather than 'java'). My .gdbinit has the following: set env THREADS_TYPE=green_threads set env JAVA_HOME /home/cs/mdw/src/java

Linux Java -native numerous processes

1999-07-28 Thread David Deal
My apologies if this question has been raised in the past. I couldn't locate any info on this topic at blackdown or on this mail list. When I start java or rmregistry in native modeIget tons of child processes (on the order of 25 - 60). Any idea why this is? Is this normal behavior? example: d

Re: Invalid DatagramSocket option

1999-07-28 Thread Rudi Streif
Hi Larry, >I installed Redhat Linux 5.2 and the kernel version is 2.0.36. I can't find >kernel config file, but during the installation, I selected "IP MULTICAST". Kernel config file is usually '/usr/src/linux/.config'. But you don't need to check it anymore because your kernel is multicasting

Re: My Thanks--Re: JNI Errors: Need Help

1999-07-28 Thread Jacob Nikom
Sun Tutorial is not for Linux. If you use JNI on SGI, you have to use -shared too. Jacob Nikom [EMAIL PROTECTED] wrote: > Many, many thanks. > The Sun Tutorial DOES NOT show that little trick. > > _ > Steve Gee > Java Developer > Maxor National Pharmacies > Information Technolog

Debugging Native code on Linux

1999-07-28 Thread Christian Cryder
Hi folks! This one is stumping me: Has anyone been able to debug JNI code on Linux? I am having absolutely zero success :-/ I've been trying to follow the debugging examples in Rob Gordon's Essential JNI, and can not get any of them to work (on either NT or Linux). He refers to dbx for Solaris..

Parent threads...

1999-07-28 Thread agetchel
Hey all, If a parent thread is set to sleep, do any child threads sleep as well? Thanks, Abe Abe L. Getchell - Systems Engineer System Support Services Kentucky Department of Education Voice 502-564-2020x225 E-mail [EMAIL PROTECTED] Web http://www.kde.state.ky.us/ --

Re: netscape 4.61, Java, Redhat 6.0

1999-07-28 Thread Nelson Minar
OK, we're getting somewhere - the libc5 and glibc versions behave differently. Hooray. I tried downloading libc5 Netscape direct from Netscape, or the mirror at ftp://ftp.the.net/pub/mirrors/ftp.netscape.com/pub/communicator/english/4.61/unix/supported/linux20_libc5/ I then fortified it and r

My Thanks--Re: JNI Errors: Need Help

1999-07-28 Thread sgee
Many, many thanks. The Sun Tutorial DOES NOT show that little trick. _ Steve Gee Java Developer Maxor National Pharmacies Information Technologies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400 -- T

Re: JNI Errors: Need Help

1999-07-28 Thread Juergen Kreileder
> sgee writes: sgee> Shared Library Command: sgee> cc -I/usr/local/jdk117/include -I/usr/local/jdk117/include/genunix sgee> HellWorldNative.c -o libhello.so That creates an executable, to build a shared library you have to add the '-shared' option. Juergen --

JNI Errors: Need Help

1999-07-28 Thread sgee
I am getting an error when compiling the shared library for this JNI code. Any input or advice is needed. JNI is new to me, and OE ( operator errors ) are more than likely to blame. I am however concerned because this exact code works fine on NT4.0, using Visual C++ 5.0 Compiler. OS: Redhat 6.0

Re: memory -mx Option

1999-07-28 Thread Dimitris Vyzovitis
Michael Sinz wrote: > > >Practically, in my experience, requests larger than 96M are not respected... > > Well, that may be the limit on your system. The JVM is dependant on the > OS for the maximum. I have many times run with -mx256m but that is only > because I needed to and I have that much

Re: netscape 4.61, Java, Redhat 6.0

1999-07-28 Thread Todd Papaioannou
>Are you running libc5 or glibc compiled version of Netscape?? Yes, you're right. I checked and it appears that my Netscape binary is compiled against libc5. Here is the ldd output: libXt.so.6 => /usr/i486-linux-libc5/lib/libXt.so.6 (0x40011000) libSM.so.6 => /usr/i486-linux-libc5/lib/l

Re: erasing the file contents

1999-07-28 Thread Rudi Streif
Typically opening an existing file for writing erases its contents. Rudi -Original Message- From: R MUTHUSWAMY <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday, July 28, 1999 3:56 AM Subject: erasing the file contents > > >hi, > > i have a file(with some co

Re: Real-Time Jini Services.

1999-07-28 Thread Timothy Murphy
On Wed, Jul 28, 1999 at 10:00:24AM -0700, Nagaraj S.B wrote: > While going through book/seller example of Jini which uses JavaSpace > service, I found response time for data retrieve is very much which may > not be suitable for Real Time objects. I've never seen any real application of Jini. Doe

unsubscribe

1999-07-28 Thread Frank Cheong
unsubscribe

Re: Slackware 3.5 and JDK 1.2 prev-v2

1999-07-28 Thread Nathan Meyers
Eric Duval wrote: > > Hi, > > I have, > > Slackware 3.5 (Linux 2.2.7) > Primary C library : glibc2.0.7 (/lib/libc.so.6 --> /lib/libc-2.0.7.so) > linuxthreads-0.71 > JDK1.2 prev-v2 An earlier note on this topic (http://www.mail-archive.com/java-linux@java.blackdown.org/msg08195.html) recommends

Slackware 3.5 and JDK 1.2 prev-v2

1999-07-28 Thread Eric Duval
Hi, I have, Slackware 3.5 (Linux 2.2.7) Primary C library : glibc2.0.7 (/lib/libc.so.6 --> /lib/libc-2.0.7.so) linuxthreads-0.71 JDK1.2 prev-v2 Environment variables : PATH=$PATH:/u/jdk1.2/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/u/jdk1.2/jre/lib/i386/native_threads:/u/jdk1.2/jre/lib/i386/green_

Slackware 3.5 and JDK 1.2 prev-v2

1999-07-28 Thread Eric Duval
Hi, I have, Slackware 3.5 (Linux 2.2.7) Primary C library : glibc2.0.7 (/lib/libc.so.6 --> /lib/libc-2.0.7.so) linuxthreads-0.71 JDK1.2 prev-v2 Environment variables : PATH=$PATH:/u/jdk1.2/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/u/jdk1.2/jre/lib/i386/native_threads:/u/jdk1.2/jre/lib/i386/green_t

Re: JWS on Linux

1999-07-28 Thread Matt Zagni
Adil, About a week ago I posted my results on installing the JavaWebServer1.1.3 it has been done before (My system is running SuSE6.1). I installed a very old installationof JWS on Slackware and SuSE5.3 too (but that was after a major build of the glib libraries). I also posted my patched files

JWS on Linux

1999-07-28 Thread Adil Atilgan
I am trying to Install Java Web Server on redhat 6.0 . There is a jwebs-linux.diff file which lets you to use sparc version of JWS on Linux. When applied jwebs-linux.diff file I got an error message . I am using patch -p0 < jwebs-linux.diff I got an error message of can't find file to patch

unsubscribe frankcheong@hongkong.com

1999-07-28 Thread Frank Cheong
unsubscribe [EMAIL PROTECTED]

erasing the file contents

1999-07-28 Thread R MUTHUSWAMY
hi, i have a file(with some contents) and i want to make the file to contain nothing oneway is to delete the file and create a file in the same name. is there any other way of doing this? thanks in advance, MUTHU.