Re: The bug is still there (and problems with the 1.1.7-v1a) (Re:A bug in the parse me

1998-12-02 Thread John Summerfield
On Tue, 1 Dec 1998, Kontorotsui wrote: > > On 26-Nov-98 Juergen Kreileder wrote: > > [About parse method] > > >Get 1.1.7-v1a and try again, 1.1.7 has some bugfixes for the parse methods. > > I got the 1.1.7-v1a and the bug is still there. The blanks are not skipped, > while in the docs it is

Re: JDK install

1998-12-02 Thread John Summerfield
On Wed, 2 Dec 1998, Jaimini Ram wrote: > > hi, > > I downloaded the jdk for linux from blackdown.org and installed it. > But when i say 'java' in the jdk bin directory, it gives the message : > > ./../bin/i586/green_threads/java: can't load library 'libXpm.so.4 > > X windows is NOT installed

Re: installation

1998-12-02 Thread wdacruz
This is what I did: 1. Deinstall Kaffe. 2. mkdir /java // of course, you have to specify your directory 3. chown wdacruz /java 4. chgrp wdacruz /java 5. su wdacruz 6. tar xvzf jdk_1_1_7-v1a-glibc-x86_tar.gz 7. tar xvzf jdk_1_1_7-v1a-glibc-x86-native_tar.gz 8. My java directory looks like this:

RE: https

1998-12-02 Thread Nguyen, Tram N.
Yes, Java does support https . All you need to do is instead of setting your URL to http://www.abc.com/something.html , you set that to https://www.abc.com/something.html (provided you enable your virtual directory). regards, Tram Nguyen N. Science Application International Corporation http://ww

Re: help

1998-12-02 Thread Antonella Bizzotto
I need to translate some UNIX code in a Java corresponding code. Do you know if there are java classes of Unix commands like uniq -c sort join ...etc. already made and available? Thank you very much, Antonella, Rome (Italy) _

Mylex DAC960PJ drivers

1998-12-02 Thread Stefano Gasparini
Hello, i'm trying to install Linux 5.2 on a UNISYS Aquanta QS/2U Server, the problem is: where i could find the driver for a MILEX DAC960PJ pci disk array controller? Thank's in advance. Steve

Re: installation

1998-12-02 Thread Levente Farkas
> paulmoody wrote: > > Hi, > I followed the install notes for jdk117 on redhat 51 and get the message > CLASSPATH not set ??? when i try to use it , > the notes say I dont have to do this. logout and login :-) and read the faq before ask. -- Levente --

Re: Unix/Linux commands using Java

1998-12-02 Thread Paul Ho
At 11:12 PM -0800 11/30/98, <[EMAIL PROTECTED]> wrote: >2. Can I combine Perl with Java? The latest Perl 5.005_54 come with JPL Cheers, Paul

Re: installation

1998-12-02 Thread Juergen Kreileder
> paulmoody writes: paulmoody> Hi, paulmoody> I followed the install notes for jdk117 on redhat paulmoody> 51 and get the message CLASSPATH not set ??? when i paulmoody> try to use it , the notes say I dont paulmoody> have to do this. paulmoody> TIA an

Re: https

1998-12-02 Thread Vincent Trussart
[EMAIL PROTECTED] wrote: > Hello > > I'm working on a project which needs to send information > such as credit card number to a web server, I'm thinking > of using protocol https, does java support https? > > If it does, how? > > Zoltan TAR If I remember correctl

The bug is still there (and problems with the 1.1.7-v1a) (Re: A bug in the parse me

1998-12-02 Thread Kontorotsui
On 26-Nov-98 Juergen Kreileder wrote: [About parse method] >Get 1.1.7-v1a and try again, 1.1.7 has some bugfixes for the parse methods. I got the 1.1.7-v1a and the bug is still there. The blanks are not skipped, while in the docs it is clearly written that they should be. >The parse-methods a

https

1998-12-02 Thread Tar . Zoltan
Hello I'm working on a project which needs to send information such as credit card number to a web server, I'm thinking of using protocol https, does java support https? If it does, how? Zoltan TAR

Re: Time slicing or tricks to simulate it?

1998-12-02 Thread Rob Nugent
You might want to check that you are not doing your compute intensive task on the event thread, as this is the thread that does the painting of components. I spin off a thread for my (very) compute intensive task, set its priority low and it works just fine on green threads. Rob Barnet Wagman w

Servlet with Chinese

1998-12-02 Thread Chu Zhurong
Hello everybody, I'm just working Java Servlet with my Web on Redhat 5.1 & Win$ NT 4. The problem is I can't pass my Chinese characters to my Servlets via GET or PUT method, when I use getParameter(somename) to get somename's value, it simply converts any charactor >=0x80 with 0x3f ('?'). The sam

installation

1998-12-02 Thread paulmoody
Hi,     I followed the install notes for jdk117 on redhat 51 and get the message CLASSPATH not set ??? when i try to use it , the notes say I dont have to do this. TIA and regards.

Re: JDK install

1998-12-02 Thread Ernst de Haan
Jaimini Ram wrote: > X windows is NOT installed, so is there any way to make it run without > requiring x libs ? Try the FAQ @ java.blackdown.org. -- _ | "Come to me all you who are weary and burdened, and I | | will

JDK install

1998-12-02 Thread Jaimini Ram
hi, I downloaded the jdk for linux from blackdown.org and installed it. But when i say 'java' in the jdk bin directory, it gives the message : ./../bin/i586/green_threads/java: can't load library 'libXpm.so.4 X windows is NOT installed, so is there any way to make it run without requiring x l

Re: Unix/Linux commands using Java

1998-12-02 Thread Roel Hofkens
>2. Can I combine Perl with Java? Larry Wall has written a toolkit called JPL that can be used for Java/Perl interfacing. You can find more information in O'Reilly's Perl Resource kit (UNIX Edition) in the Perl Utilities Guide. There are a few chapters online, see http://www.oreilly.com/catalo

Re: Unix/Linux commands using Java

1998-12-02 Thread ceesg
2. Can I combine Perl with Java? Dunnow about Perl. If you want scripting under Java and are not afraid of learning another (very simple) language, I suggest you check out JPython. It's a Python implementation in 100% Pure Java and integrates really good with Java - you can inherit in Python fr

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: Time slicing or tricks to simulate it?

1998-12-02 Thread Bryce McKinlay
Download and install the native threads package, and enable it by setting the THREADS_FLAG environment variable. Green threads do "time-slice", just not very well ;-) regards [ bryce ] Barnet Wagman wrote: > It appear that the the linux implementation of java does not do > time-slicing (I'm

Re: Unix/Linux commands using Java

1998-12-02 Thread Chris Sommers
Check out O'Reilly books, they have a Perl toolkit set which includes some java-Perl classes on CD-ROM. I perused the set briefly at a bookstore. I'm pretty sure the SW was all public-domain. This was months ago, sorry I can't be more specific. Someone else must know the details... - chris Jaco

RE: Unix/Linux commands using Java

1998-12-02 Thread Jaco Greeff
> 1. Can I call Unix/Linux commands from my java program? Don't know about examples, but check out the Runtime core library. (Specifically the Exec method.) > 2. Can I combine Perl with Java? Ummm... Not exactly sure what you want to do, but using the Exec method (check above) you should be abl

Unix/Linux commands using Java

1998-12-02 Thread wdacruz
Hi! I just finished studying Java on a Windows environment using VisualJ++ and Visual Cafe for Windows. Now, I want to start writing a java program in my RH5.2 linux box using JDK1.17a, which I just installed. I have some questions before I start: 1. Can I call Unix/Linux comman

Dialogs in applets

1998-12-02 Thread Doug Welzel
I saw a message a while back in the list about using modal dialogs in Applets. I just want to get a Dialog to work in an applet and could use some advice. The constructor for a Dialog wants a Frame. How do I get a Frame from a JApplet? Some documentation I had suggested using the getParent() m