Re: RMI binding bug

1998-11-19 Thread Douglas T. Brown
You are correct to pick up the typos in my note. The syntax that I got to bind was in fact "rmi//... rather than "rmi:// ... As I have since read various sources, I have found the syntax for the argument of bind and rebind variably as: ("rmi://host/name", obj) or ("//host/name", obj). Further e

Re: jdk_1.1.7-v1a missing headerfiles

1998-11-19 Thread Michael Sinz
On Thu, 19 Nov 1998 18:16:30 -0600, Robert C. Pettengill wrote: >jdk_1.1.7-v1a-glibc-x86-native.tar.gz >is missing most of the headerfiles in the inlude directory. >We have a jni app that needs them. Are they unchanged from 1.1.6 or >unchanged form the Solaris versions? You need to use jdk_1.1.

Re: Runtime.exec ()

1998-11-19 Thread mlorton
> From: Mark Hofmann <[EMAIL PROTECTED]> > Subject: Re: Runtime.exec () > > Hi, > > I tried the same thing some time ago. > The problem is, exec works, for example if you try exec("ls") you wont get > problems. However, running anything as a command that has a > redirection of out-/ input in it

Re: Linux + java + oracle

1998-11-19 Thread Robert P. Biuk-Aghai
Hi, I have a similar setup (Linux 2 glibc, JDK 1.1.6, Oracle 8) and for me it works fine, however in *applications*. I tried running the same stuff in an applet, and although the classes111.zip file from Oracle was in my browser's classpath, I would get the same or a similar exception as you (don

Re: jdk_1.1.7-v1a missing headerfiles

1998-11-19 Thread Juergen Kreileder
> Robert C Pettengill writes: Robert> jdk_1.1.7-v1a-glibc-x86-native.tar.gz is missing most of Robert> the headerfiles in the inlude directory. We have a jni Robert> app that needs them. Are they unchanged from 1.1.6 or Robert> unchanged form the Solaris versions? The nativ

Re: Linux + java + oracle

1998-11-19 Thread Rudhuwan Abu Bakar
maybe this is unrelated but i need help I am using JDBC driver to connect to Oracle 8.0.5 under linux. However i keep getting unknown driver.I use oracle.jdbc.driver.OracleDriver as the name of the JDBC driver?Anyone can tell me if this is the correct driver. Sorry for this.I have no way to go

jdk_1.1.7-v1a missing headerfiles

1998-11-19 Thread Robert C. Pettengill
jdk_1.1.7-v1a-glibc-x86-native.tar.gz is missing most of the headerfiles in the inlude directory. We have a jni app that needs them. Are they unchanged from 1.1.6 or unchanged form the Solaris versions? ;rob -- Robert C. Pettengill, Ph.D. Schlumberger assignee to the MCC InfoSleuth Project M

CLASSPATH var.

1998-11-19 Thread Karthik Vishwanath
Hi all, The java... classes exist as a classes.zip file in ~/jdk-1.1.6/lib. Also, the README.linux says that there is no need to set CLASSPATH. If i need to use 3rd party packages present as .class files in a dir such as ~/3rdparty//utils/classes/* how must i modify my CLASSPATH

Re: RMI binding bug

1998-11-19 Thread Chris Kakris
"Douglas T. Brown" wrote: > > 1) The correct syntax for the first argument string for rebind is: > "rmi://host/name", whereas I had only "//host/name". > > 2) More interesting is that localhost does not work. Thus, > "rmi//127.0.0.1/HelloServer" does not work, nor does > "rmi//localhost/Hello

Re: Retract stupid question about linux-java - a permission issue

1998-11-19 Thread Wolfgang Mües
Am Die, 17 Nov 1998 schrieb Chip Grandits: >A.P. Bell wrote: > >> Don't know much about Java. You should temporarily change the permissions on >> /dev/audio and /dev/dsp to 666 and run your applet -- to ensure that your setuid >> trick has worked. Also, a method such as play() is likely override

Re: Java and 3D.

1998-11-19 Thread Joel Shellman
Related question. Does anyone know how or if there is a way to use the Java 3D kit on Linux? I tried to download it but realized it was an executable and therefore not runnable on linux. Thank you, Joel Shellman http://corp.knocean.com/

Re: Java and 3D.

1998-11-19 Thread wbogardt
More importantly is there possibly any group that plans on going to work on porting Java 3D API to Linux? I understand that the Java 3D API is layered on top of and makes some calls to the lower level OpenGL, Direct3D APIs, which are tied to certain hardware. If you are looking for a more immedia

Re: Java and 3D.

1998-11-19 Thread jeff
Magician http://www.arcana.co.uk is the best way to do Opengl with java. Joel Shellman wrote: > Related question. Does anyone know how or if there is a way to use the > Java 3D kit on Linux? I tried to download it but realized it was an > executable and therefore not runnable on linux. > > Thank

JDK 1.1.7

1998-11-19 Thread a . yilmaz
I had some problems while trying to install JDK(main being, I couldn't figure out how to install it!). Could you help me somehow?

JWS on x86 linux

1998-11-19 Thread Johnathan S Ra
On your website, It read: Java Web Server The Java Web Server 1.1 "final" is available at Javasoft's Java Web Server page. Refer to mailing list about problems with this package. Here is a quick install outline: - You will need the Solaris SPARC distribution. Does this mean you can't run JWS on

Re: Runtime.exec ()

1998-11-19 Thread Marius Schamschula
Thanks to all that sent me the key: exec doesn't redirect I've rewritten my test applet to run a shell script that does the redirection for me. It works just fine. Marius Marius Schamschula, optical physicist, mac, and network coordinator The Center for Applied Optical Sciences: http://www.c

FYI: OpenGroup 1.1.6v2 and Invocation

1998-11-19 Thread Bernd Kreimeier
> The main improvements are > - SIGPIPE bug fix > - invocation API support I had one problem on RedHat 5.1, had to take out of the LD path a libzip available on the system to allow for use of the one that comes with the JDK, else you get linker errors: Creating Java VM... /opt/local/lib/libz

Re: Runtime.exec ()

1998-11-19 Thread Mark Hofmann
Hi, I tried the same thing some time ago. The problem is, exec works, for example if you try exec("ls") you wont get problems. However, running anything as a command that has a redirection of out-/ input in it fails. I don't know why, but that's what I experienced. Anybody knows why ??? Mar

Re: [ Michael Beattie ] Retract stupid question about linux-java - a permission issue

1998-11-19 Thread Gregg G. Wonderly
>> To be honest I must not really understand permission >> the application appletviewer, which comes with a jdk is really a symlink to a file >> called >> .java_wrapper >> # ls -l .java_wrapper .java_wrapper is a shell script. setuid or setgid on a shell script may or may not work depending

Re: Runtime.exec ()

1998-11-19 Thread Juergen Kreileder
> Marius Schamschula writes: Marius> Hi there, Marius> I am having trouble getting Runtime.exec () to do anything Marius> (yes I do send the desired command as an Marius> argument...e.g. "/bin/ls /home/someusr/dir > Marius> /home/someusr/test"). I've tested my code on both

Runtime.exec ()

1998-11-19 Thread Marius Schamschula
Hi there, I am having trouble getting Runtime.exec () to do anything (yes I do send the desired command as an argument...e.g. "/bin/ls /home/someusr/dir > /home/someusr/test"). I've tested my code on both a mkLinux (DR2.1u5) and Debian Linux machine running various flavors of JDK 1.1.x. I'm tryin

Re: RMI binding bug

1998-11-19 Thread Douglas T. Brown
Thank you all for your help on this. I seem to have it working now. There were two issues which I'll try to make explicitly clear for the mail list archive and future reference: 1) The correct syntax for the first argument string for rebind is: "rmi://host/name", whereas I had only "//host/nam

Re: Linux + java + oracle

1998-11-19 Thread peter . pilgrim
SunSoft[tm] maintains a list of JDBC drivers from a number of third party vendors on it web pages See the following URL for a list of JDBC drivers provided: http://java.sun.com:80/products/jdbc/jdbc.drivers.html __ Reply Separator _

Re: linux

1998-11-19 Thread jim watson
Mehrdad, if you have slackware 3.3, you may need the libc5 version of jdk. when i had slackware 3.4, it did not have glibc or bunzip2, Unless you have installed these yourself, you will need the libc5 and tar.gz version such as - ftp://ce.usu.edu/pub/mirror/linux/JDK/JDK-1.1.7/i386/libc5/v1a/jdk

Java and 3D.

1998-11-19 Thread Karthik Vishwanath
Hi All, I need to use some extensive 3d-stuff in a java app that i plan to write. Do any tools exist that would enable me to use a 3d package as OpenGl along with java? Thanks, Karthik. +-+ | Karthik Vishwanath, Graduate tra

RE: Linux

1998-11-19 Thread Klaus Strebel
Hi, you wrote: > If you click on several entries such as: > i18n_1.1.7-v1a-glibc-x86.tar.bz2 > it tries to read the file in binary format. How are you supposed to > download these files. well, what is wrong in downloading binary files as binary files ??? :-o. But remember that you need bzip2 to

Linux + java + oracle

1998-11-19 Thread Przemek Bąk
How can I connect to Oracle using java on Linux ? But ! we have in job Oracle 7.1.* so I cannot use Oracle Thin driver which works only with Oracle 7.3.* (I guess) and above. przemol -- [EMAIL PROTECTED]

Arabic Support

1998-11-19 Thread rick
Does JDK 1.1.7v1a supports arabic? If so , how can i import windows arabic fonts to Linux ? Thanks

Arabic Support

1998-11-19 Thread rick
Does JDK 1.1.7v1a supports arabic? If so , how can i import windows arabic fonts to Linux ? Thanks Rick T Fajardo