Help on installing Jserv

1999-10-07 Thread Sudhir Babu
Hello friends, I am using RedHat 5.2 and jkd 1.1.7 ,and i want help on installing Jserv,to run servlets.I tried to install Jserv 1.1 as given in the readme file and congfigured as specified.But when i run apache server it tells me that there are errors in jserv.conf. If i comment the Incl

Re: "no awt in shared library path"

1999-10-07 Thread Michael Sinz
On Thu, 7 Oct 1999 19:22:23 -0500, Mike Tinnes wrote: > >I get the following error while trying to run a servlet that utilized the >awt classes.. "no awt in shared library path". I'm using RH6.0, Apache JServ >1.1b1 and jdk117v3. I'm assuming the VM needs the LD_LIBRARY_PATH set to the >awt share

"no awt in shared library path"

1999-10-07 Thread Mike Tinnes
I get the following error while trying to run a servlet that utilized the awt classes.. "no awt in shared library path". I'm using RH6.0, Apache JServ 1.1b1 and jdk117v3. I'm assuming the VM needs the LD_LIBRARY_PATH set to the awt shared libraries, but how? TIA, Mike -

Changing the font on Swing slider

1999-10-07 Thread Jacob Nikom
Hi, I am trying to change the font style and size on some of the Swing widgets, mostly JSlider (tick marks numbers), TabbedPanes (tab names), etc. You cannot not set them up directly with setFont. I could not find any information how to do it. Do you have any idea how to do it? Thank you, J

Re: Java on RedHat 6.1

1999-10-07 Thread Rachel Greenham
Paolo Ciccone wrote: > > On Thu, Oct 07, 1999 at 10:49:58AM -0700, Dan Iuster wrote: > > RedHat has just released the 6.1 version of Linux. I am curious if > > anyone has had any experience with the 1.1.7, 1.1.8 or 1.2 JDK and JRE > > on RedHat 6.1. I have some rather large applications to port

Re: Applet transparency?

1999-10-07 Thread Rachit Siamwalla
Just so you know, the javafaq at www.afu.com claims its impossible. I have yet to find a mistake in the faq. -rchit Dustin Lang wrote: > > Hi, > > > Try setting the background color to null. > > One might suppose that what should happen is that the browser would leave > the background in its

Q: Working JDK1.1 for Sparc Linux?

1999-10-07 Thread Gary E Rafe
A week later and no responses, so we'll try again. We recently resurrected an old IPX for a project here, which requires Apache/JServ. The box was running Solaris 2.6, but was just too sluggish, even with the PowerUP CPU. Having heard the performance claims of the recent Sparc Linux ports, We loa

Re: Java on RedHat 6.1

1999-10-07 Thread Paolo Ciccone
On Thu, Oct 07, 1999 at 10:49:58AM -0700, Dan Iuster wrote: > RedHat has just released the 6.1 version of Linux. I am curious if > anyone has had any experience with the 1.1.7, 1.1.8 or 1.2 JDK and JRE > on RedHat 6.1. I have some rather large applications to port, and I > would like to know if

Re: Java on RedHat 6.1

1999-10-07 Thread Riyad Kalla
I am using it and it works wonderfully (1.2prev2) that is with AnyJ 1.3.1. -Riyad Dan Iuster wrote: > RedHat has just released the 6.1 version of Linux. I am curious if > anyone has had any experience with the 1.1.7, 1.1.8 or 1.2 JDK and JRE > on RedHat 6.1. I have some rather large applicati

RE: Applet transparency?

1999-10-07 Thread Dustin Lang
Hi, > Try setting the background color to null. One might suppose that what should happen is that the browser would leave the background in its original pristine state, and then unless the applet painted itself, that background would stay the way it was. I think most (read: all) browsers paint

RE: Applet transparency?

1999-10-07 Thread Roll, Greg
No, setting it to null will yield the default as the background color. GR -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 07, 1999 2:16 PM To: [EMAIL PROTECTED] Subject: Re: Applet transparency? Try setting the background color to null. I

Re: Applet transparency?

1999-10-07 Thread Paul Mclachlan
At 12:24 10 Oct 1999 -0500, Roll, Greg wrote: > Anyone know if there a way to set an applets background color to be > transparent? Wouldn't that be wonderful? I wish there was, too. A couple of ideas. If it's just a colour you're after, just set it in the applet. An option is to have a tiny

Re: TYA Mirror in Germany

1999-10-07 Thread Gunjan
Friends I am trying to install oracle server 8.1.5 which uses jre1.1.6v5 (glibc). I get an error saying illegal option green when the installation process begins intializing JRE. Thanks in advance Gunjan - Original Message - From: Willi Richert <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

Java on RedHat 6.1

1999-10-07 Thread Dan Iuster
RedHat has just released the 6.1 version of Linux. I am curious if anyone has had any experience with the 1.1.7, 1.1.8 or 1.2 JDK and JRE on RedHat 6.1. I have some rather large applications to port, and I would like to know if there are any known pitfall introduced by the new kernel. I believe

Applet transparency?

1999-10-07 Thread Roll, Greg
Hi All, Anyone know if there a way to set an applets background color to be transparent? Greg E. Roll BT Office Products Intl. Interface/Conversions Team phone - (817) 323-1300 ext. 2921 e-mail - [EMAIL PROTECTED] Tech Tools.gif

Re: Class information in a static method

1999-10-07 Thread Godmar Back
> > > If you know the class' name, and I suspect that you do > > since you are in a static method of the class, you can > > do a Class.forName(className). > > Better still, className.class, and have it resolved at > compile time rather than by a runtime lookup. > Miles, "className.class" is

WebRun

1999-10-07 Thread Michael Sinz
I was just wondering who else is interested in WebRun and if anyone has tried it yet. WebRun is a tool to load and run applications from a web server including support for password entry. (Actually it supports any URL type that your Java VM supports) I wrote this to help make it possible to hav

Re: Class information in a static method

1999-10-07 Thread Juergen Kreileder
> Weiqi Gao writes: Weiqi> Jesper Nordenberg wrote: >> >> Is there any way to obtain the Class-instance associated with the >> current class in a static method? Obviously, this.getClass() doesn't >> work ;) Weiqi> If you know the class' name, and I suspect that you d

RE: Class information in a static method

1999-10-07 Thread Miles Sabin
> If you know the class' name, and I suspect that you do > since you are in a static method of the class, you can > do a Class.forName(className). Better still, className.class, and have it resolved at compile time rather than by a runtime lookup. Cheers, Miles -- Miles Sabin

Re: Class information in a static method

1999-10-07 Thread Paul Mclachlan
At 8:32 10 Oct 1999 -0500, Weiqi Gao wrote: > Jesper Nordenberg wrote: > > > > Is there any way to obtain the Class-instance associated with the > > current class in a static method? Obviously, this.getClass() doesn't > > work ;) > Use the special variable 'MyClass.class'. (not in 1.0.2) Pa

TYA Mirror in Germany

1999-10-07 Thread Willi Richert
I have mirrored the newest version of tya (1.5-2) at http://www.richert.de/opensource/tya Hopefully anybody has now a faster download. Have fun, willi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscri

OT Re: Class information in a static method

1999-10-07 Thread jools enticknap
>This might be slightly off topic, but I really need help with this. > >Is there any way to obtain the Class-instance associated with the current >class in a static method? Obviously, this.getClass() doesn't work ;) > If the class is call com.blah.Stuff, use com.blah.Stuff.class; to get the jav

Re: Class information in a static method

1999-10-07 Thread Weiqi Gao
Jesper Nordenberg wrote: > > Is there any way to obtain the Class-instance associated with the > current class in a static method? Obviously, this.getClass() doesn't > work ;) If you know the class' name, and I suspect that you do since you are in a static method of the class, you can do a Class

Re: Class information in a static method

1999-10-07 Thread David Marshall
  Jesper Nordenberg wrote: This might be slightly off topic, but I really need help with this. Is there any way to obtain the Class-instance associated with the current class in a static method? Obviously, this.getClass() doesn't work ;)   You can use the static method Class.forName() on the Clas

Re: Class information in a static method

1999-10-07 Thread Nathan Ehresman
> This might be slightly off topic, but I really need help with this. > > Is there any way to obtain the Class-instance associated with the current class in a >static method? Obviously, this.getClass() doesn't work ;) Pass in a reference to the class. Nathan Ehresman

Re: libjava.so not found

1999-10-07 Thread Vlatka Davidovic
On Wed, 6 Oct 1999, SteveC wrote: > > Then put /jdk1.2/bin/ in the path and run ./javac > which reports it can't find libjava.so. > I think it is known bug. Try to put /usr/local/jdk1.2/bin/ in your PATH variable and run javac. Or if you are in jdk1.2/ directory try bin/javac. Not from ./

Class information in a static method

1999-10-07 Thread Jesper Nordenberg
This might be slightly off topic, but I really need help with this. Is there any way to obtain the Class-instance associated with the current class in a static method? Obviously, this.getClass() doesn't work ;) -- | Jesper Nordenberg, M.Sc. in C.S.E.NNL Technology AB | E-mail: [EMAIL PROTEC