Re: Printing

1998-08-14 Thread Juergen Kreileder
"Laura L. Evangelista" <[EMAIL PROTECTED]> writes: > John Zukowski wrote: > > > Does the Linux JDK support printing? > > If you mean it comes with the JDK, yes ... I'm using JDK 1.1.3. > > > The error message seems to imply that it didn't come from the source in > > from the AWT book. Is this

Re: Time zone handling broken in Linux java?

1998-08-14 Thread Juergen Kreileder
Mats Petersson <[EMAIL PROTECTED]> writes: > Hello! > > I recently downloaded JDK 1.1.6 v2, and I have problems getting it > correctly interpret the timezone setting on my machine. Since I live > in Sweden, my timezone is "MET DST", however this seems to confuse > java. The time returned from Da

Re: Printing

1998-08-14 Thread Laura L. Evangelista
> Printing with java 1.1.6 on linux works, I don't know if it works with 1.1.3. Have you tried running the code I attached to my first post? (TestPrint.java) > The error you get is thrown if java cannot execute /usr/bin/lpr or > /usr/bin/lp. Does one of these files exist on your system? lpr exi

Wrong time in Clock demo (fwd)

1998-08-14 Thread Steve Byrne
Mats Petersson writes: > > Hello! > > I just downloaded JDK v1.1.6 v2, and I have tried some of the demos > included. Most of them work fine, except for the "Clock" demo, > which shows completely wrong time when running it with appletviewer. > In Netscape it works as it should, though. >

Re: Printing

1998-08-14 Thread Steve Byrne
Uncle George writes: > it is most likely trying to run the "lp" as in ( i tyhink) "/usr/bin/lp" > which doesnt exist there under redhat. u can symbolically link the lp's > together. That won't be enough -- the code uses the arguments that lp understands. I fixed this in 1.1.6v2 -- I can't tel

install JDK without AWT ? [ no x11 ]

1998-08-14 Thread Steve Byrne
RTFM (README.linux). Yes, X/AWT isn't required.

Re: Wrong time in Clock demo (fwd)

1998-08-14 Thread Mats Petersson
On Thu, 13 Aug 1998, Steve Byrne wrote: > Mats Petersson writes: > > > > Hello! > > > > I just downloaded JDK v1.1.6 v2, and I have tried some of the demos > > included. Most of them work fine, except for the "Clock" demo, > > which shows completely wrong time when running it with appletv

Re: Wrong time in Clock demo (fwd)

1998-08-14 Thread Rob Nugent
You might like to look at my bug http://developer.javasoft.com/developer/bugParade/bugs/4124203.html and the one it was closed as a duplicate of. In the U.K, the clocks were fine until JDK 114 shipped, and they had "fixed" the fact that the GMT time zone went on to daylight savings time. My cloc

Re: Wrong time in Clock demo (fwd)

1998-08-14 Thread Mats Petersson
On Fri, 14 Aug 1998, Rob Nugent wrote: > You might like to look at my bug > > http://developer.javasoft.com/developer/bugParade/bugs/4124203.html > > and the one it was closed as a duplicate of. In the U.K, the clocks were fine until > JDK 114 shipped, and they > had "fixed" the fact that the G

Re: "Tried to free bogus memory"...

1998-08-14 Thread Hoe-Teck Wee
Hello! >I am using jdk1.1.6 v2, and I get the message > "Tried to free bogus memory , ignored" README.linux for the jdk 1.1.6 v2 from sbb reads: "Resizing AWT components has been linked with memory corruption. As of the time of this writing, it appears that the corruption (double freein

No DB connection in Netscape ? Please help.

1998-08-14 Thread Kapoor, Nishikant X
Hello friends I have apache-1.1.3-3 and PostgreSQL-6.3.2 running on my Linux RH4.2, kernel 2.0.30 (genx). I have a Java Applet that tries to connect to PostgreSQL using JDBC, from NS-4.5b1 on an IBM RISC6000, AIX-4.1.4 (mm01). Typing "mm01: netscape http://genx/PrfApplet.htm" brings up the apple

Re: No DB connection in Netscape ? Please help.

1998-08-14 Thread Kenny Freeman
I could be on thin ice, but applets can only make connections to the site that they were loaded from. I noticed a security... something or other in the java console o/p (just a quick look). Maybe that explains why you can connect on one machine, and not the other On Fri, 14 Aug 1998, Kapoor,

re: Can´t load a RTF-Document in JEditorPane

1998-08-14 Thread Steve Alexander
[EMAIL PROTECTED] (Bernhard Hoelcker) wrote: > Hi, > To load a RTF-document, I tried to use an JEditorPane and > invoke the read(Reader,null) method of its superclass JTextPane. > > But there is allways an IOException: ´RFT is an 8-Bit format´. > > I tried to build the Reader with: > > InputStrea

Re: Socket connect timeout (user threads and blocking)

1998-08-14 Thread Kevin B. Hendricks
Hi, Just to clarify a few things. There is very little difference in performance between a user based green_threads implementation and a kernel threads (native) implementation (except for scheduling rules) on single processor systems. If done well, user based threads can even be faster than ker