Re: Stupid question

1999-07-14 Thread José David Martínez Cuevas
Nick Lawson wrote: > Depends which Java you have. Its probably Kaffe if you installed from > a redhat RPM. In that case it will be JDK 1.1, and you will need to set > the classpath to point at the class library. > > If you can't find any documentation, you could always download > the tools docume

How to print a GUI

1999-07-14 Thread Sitanshu Bhusan Nanda
I am using java1.1.5 in Redhat Linux 5.2. I have developed some applications using JDBC and Postgresql 6.4 . I have also generated some reports using Java AWT. My problem is how to print those GUIs(reports). Is there any way i can convert these GUIs to **.ps files? ---

Re: SOCKS firewall piercing?

1999-07-14 Thread Dustin Lang
I'll just go ahead and answer my own question and save everyone else the trouble. Silly Dustin, all you have to do is set a system property. You can do that like this: java -DsocksProxyHost=socks.whatever.org -DsocksProxyPort=1080 MyClass Sorry for adding to the noise... at least this will sh

Re: a filesystem standard for the JDK

1999-07-14 Thread Paolo Ciccone
> "SM" == Scott Murray <[EMAIL PROTECTED]> writes: SM> Well, if the user buys Solaris 7 or installs one of SunSoft's SM> Production VM packages on a 2.5.1 - 7 box, then /usr/java SM> contains the JDK (as a link to /usr/java1.1), and SM> /usr/bin/java is a link to the "official

SOCKS firewall piercing?

1999-07-14 Thread Dustin Lang
Hi, I'm stuck on the bad side of a SOCKS firewall and I'd like to get Java playing nice with it, at least until I get my Virtual Private Network set up. The SOCKS 4 protocol is trivial, so I thought I'd just write my own. However, after a little investigation I discovered that java.net.PlainSoc

Java in Embedded space

1999-07-14 Thread Christian Cryder
Hi all, I'm curious in investigating Embedded Java more fully, and I'm wondering if anyone knows of any mailing lists (or other resources) devoted to this arena. Has anyone here actually done anything in this space yet? What JVM's are available or suited for this task? Any pointers in the right d

Re: a filesystem standard for the JDK

1999-07-14 Thread Zdenek Kabelac
> Has anyone worked up a filesystem standard for the JDK on linux? I've > seen it installed all over the place on different Linux systems. Maybe > we can come up with a standard place to put everything and make the > world safe for RPMs and .debs everywhere. > > Is there a sensible Solaris stand

Re: [sockets problem]

1999-07-14 Thread Yuwin Fei
You should be able to track if there's any exception occured to the sockets in question, of course that's assuming that you're performing IO on them, such as attempting to read or write on the sockets. One thing you should keep watch for is the variable that keeps track of the socket is being

Re: a filesystem standard for the JDK

1999-07-14 Thread Paolo Ciccone
> "NM" == Nelson Minar <[EMAIL PROTECTED]> writes: NM> Has anyone worked up a filesystem standard for the JDK on NM> linux? I've seen it installed all over the place on different NM> Linux systems. Maybe we can come up with a standard place to NM> put everything and make the w

RE: final variables in constructors

1999-07-14 Thread Harold G. Andrews II
Have you tried using "static final int v = 1;" instead? -Andy > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Kontorotsui > Sent: Wednesday, July 14, 1999 12:41 PM > To: [EMAIL PROTECTED] > Subject: final variables in constructors > > <...Snip...>

final variables in constructors

1999-07-14 Thread Kontorotsui
I wonder why if I write this: aClass extends aSuperClass { aClass() { super(1); } } where the superclass is: aSuperClass { aSuperClass(int i) { ... } } anything works ok. If instead I write aClass extends aSuperClass { final int v = 1; aClass() { super(v);

RE: Swing API

1999-07-14 Thread Kontorotsui
On 14-Jul-99 R MUTHUSWAMY wrote: > i am using java1.1.7 and i want swing api's for linux. i have > heard that i can't use the solaris files for swing. And also there is no > swing available for linux for earlier versions. I used Swing for JDK1.1.7 before switching to 1.2, you can find S

Re: a filesystem standard for the JDK

1999-07-14 Thread Nathan Meyers
Nelson Minar wrote: > > Has anyone worked up a filesystem standard for the JDK on linux? I've > seen it installed all over the place on different Linux systems. Maybe > we can come up with a standard place to put everything and make the > world safe for RPMs and .debs everywhere. > > Is there a

Re: java.lang.OutOfMemoryError

1999-07-14 Thread Nick Lawson
You say you get a stack overflow ? is that stack overflow as in java.lang.StackOverflowError ? That sounds impossible !! This error is supposed to mean too many nested method calls, but your program doesn't do any nested calls ! If this is what is happening, send me the class file and I'll decomp

a filesystem standard for the JDK

1999-07-14 Thread Nelson Minar
Has anyone worked up a filesystem standard for the JDK on linux? I've seen it installed all over the place on different Linux systems. Maybe we can come up with a standard place to put everything and make the world safe for RPMs and .debs everywhere. Is there a sensible Solaris standard? Anyone

ouf mail list

1999-07-14 Thread Yoav . Lehiman
take me out of your mail list please. you are sending your mail to me and i have nothing to do with it !! thanks yoav -- Forwarded by Yoav Lehiman/ECI Telecom on 14/07/99 05:01 PM --- Greg Walker <[EMAIL PROTECTED]> on 14/07/99 04:00:51 PM Ple

Re: Swing API

1999-07-14 Thread Mark O'Donohue
Hi Yep it works fine, you need the solaris download, extract the file swingall.jar and place it in your classpath. I believe the latest release swing 1.1 beta3 is the last that will be backported to run on jdk1.1 all others will run only on 1.2. There is doco at the swing connection which desc

sockets problem

1999-07-14 Thread Greg Walker
I am having a problem with a server written in java that uses sockets. The server runs fine; the problem arises when I try to access it. The client is simply telnet and after making a connection, and receiving a handful of bytes, the client hangs as if the server is not responding. Yet the server

Re: Swing API

1999-07-14 Thread Yoav . Lehiman
hi you all please remove me from this mail list regards yoav -- Forwarded by Yoav Lehiman/ECI Telecom on 14/07/99 02:45 PM --- William Gallafent <[EMAIL PROTECTED]> on 14/07/99 01:43:24 PM To: [EMAIL PROTECTED] cc:(bcc: Yoav Lehiman/ECI Teleco

Re: Swing API

1999-07-14 Thread William Gallafent
On Wed, 14 Jul 1999, R MUTHUSWAMY wrote: >hi, > > i am using java1.1.7 and i want swing api's for linux. i have >heard that i can't use the solaris files for swing. And also there is no >swing available for linux for earlier versions. Tell me about the swing >details. First, you may want t

Re: java.lang.OutOfMemoryError

1999-07-14 Thread Crispin Miller
Nick Lawson wrote: > Hi Crispin, How you doing? Well!... > > > Your original question never did get a satisfactory answer. > However it's definitely not the same as Luigi's. > > Perhaps you could try the code below; on Suns Windows JDK1.2 > the total > stays constant at 1m, and the free highwa

Swing API

1999-07-14 Thread R MUTHUSWAMY
hi, i am using java1.1.7 and i want swing api's for linux. i have heard that i can't use the solaris files for swing. And also there is no swing available for linux for earlier versions. Tell me about the swing details.