From owner-freebsd-java Sun Mar 8 14:20:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19820 for freebsd-java-outgoing; Sun, 8 Mar 1998 14:20:41 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from northwest.com (port31.northwest.com [204.119.42.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19812 for ; Sun, 8 Mar 1998 14:20:30 -0800 (PST) (envelope-from stevemw@northwest.com) Received: from fuji (localhost [127.0.0.1]) by northwest.com (8.8.7/8.8.7) with ESMTP id OAA09770; Sun, 8 Mar 1998 14:19:37 -0800 (PST) (envelope-from stevemw@fuji) Message-Id: <199803082219.OAA09770@northwest.com> To: java@FreeBSD.ORG cc: stevemw@northwest.com Subject: VM Debugging: Problem with GDB and Shared Libs Date: Sun, 08 Mar 1998 14:19:37 -0800 From: Stephen Wynne Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I need help figuring out how to set a breakpoint in a shared library (which has been compiled with -ggdb -g3 -O3 *or* -g -O). I'm trying to debug the VM by setting up my environment variables by hand (in my own script), and then invoking gdb on java_g. I fail to set a breakpoint in java_main (even after running once). Here's what happens: (gdb) run Hello Starting program: /usr/java/javasrc/build/bin/i386/green_threads/java_g Hello Hello Program exited normally. (gdb) break java_main Cannot access memory at address 0x20076b30. (gdb) Can anyone shed some light on this problem for me? I'm on FreeBSD 2.2.5-RELEASE with a cvsup'ed kernel on 2.2.5-STABLE with src-sys, src-crypto, src-eBones, src-secure updated last Sunday. If you have a hint for me, I'd sure appreciate it! Thanks, Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 8 19:59:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA15608 for freebsd-java-outgoing; Sun, 8 Mar 1998 19:59:18 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from gate.quick.com.au (gate.quick.com.au [203.12.250.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA15602 for ; Sun, 8 Mar 1998 19:59:12 -0800 (PST) (envelope-from sjg@quick.com.au) Received: (from sjg@localhost) by gate.quick.com.au (8.8.8/8.7.3) id OAA29401; Mon, 9 Mar 1998 14:58:40 +1100 (EST) Date: Mon, 9 Mar 1998 14:58:40 +1100 (EST) From: "Simon J. Gerraty" Message-Id: <199803090358.OAA29401@gate.quick.com.au> To: Stephen Wynne Cc: freebsd-java@FreeBSD.ORG, sjg@quick.com.au Subject: Re: VM Debugging: Problem with GDB and Shared Libs References: <199803082219.OAA09770@northwest.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >script), and then invoking gdb on java_g. I've been doing a bit of this recently (on NetBSD which I'll assume is close enough), so this should point you in the right direction. >I fail to set a breakpoint in java_main (even after running once). you need to let the prog run til main() has been entered before you can access java_main() as in: GDB is free software and you are welcome to distribute copies of it under certain conditions; type "show copying" to see the conditions. There is absolutely no warranty for GDB; type "show warranty" for details. GDB 4.16 (i386-netbsd), Copyright 1996 Free Software Foundation, Inc... (gdb) b main Breakpoint 1 at 0x17f4: file ../../../../src/netbsd/java/javai/java.c, line 30. (gdb) r t Starting program: /u0/javasrc/buildbin/bin/i386/green_threads/java_g t Breakpoint 1, main (argc=2, argv=0xefbfd2b8, envp=0xefbfd2c4) at ../../../../src/netbsd/java/javai/java.c:30 30 ENVP = envp; (gdb) b java_main Breakpoint 2 at 0x40074a70: file ../../../../src/netbsd/java/javai/javai.c, line 261. (gdb) c Continuing. Breakpoint 2, java_main (argc=2, argv=0xefbfd2b8) at ../../../../src/netbsd/java/javai/javai.c:261 261 char *sourcefile = 0; (gdb) Then assuming you want to set a break point in awt_util_reshape() which is in libawt.so you need to set a break point in sysAddDLSegment() which you can do now, and wait for libawt.so to be loaded... (gdb) b sysAddDLSegment Breakpoint 3 at 0x40077b48: file ../../../../src/netbsd/java/runtime/linker_md.c, line 142. (gdb) c Continuing. Breakpoint 3, sysAddDLSegment (fn=0xefbfc15c "libawt.so") at ../../../../src/netbsd/java/runtime/linker_md.c:142 142 if (!linkerinitialized) { (gdb) finish Run till exit from #0 sysAddDLSegment (fn=0xefbfc15c "libawt.so") at ../../../../src/netbsd/java/runtime/linker_md.c:142 0x40069438 in java_lang_Runtime_loadFileInternal (Hlinker=0x40457398, Hfilename=0x40457f70) at ../../../../src/share/java/lang/runtime.c:92 92 return sysAddDLSegment(fname); Value returned is $1 = 1 (gdb) Now libawt.so is loaded into the VM but you cannot access any functions because gdb has not loaded the symbols. Your gdb should support the following (with the correct path of course): (gdb) sharedlibrary /u0/javasrc/buildbin/lib/i386/green_threads/libawt_g.so Reading symbols from /u0/javasrc/buildbin/lib/i386/green_threads/libawt_g.so... done. (gdb) b awt_util_reshape Breakpoint 4 at 0x4128993b: file ../../../../src/netbsd/sun/awt_util.c, line 96. (gdb) c Continuing. ... ... Breakpoint 4, awt_util_reshape (w=0x27cc00, x=0, y=0, wd=0, ht=0) at ../../../../src/netbsd/sun/awt_util.c:96 96 Boolean move = False; (gdb) and there you have it. Hope that helps. --sjg As an example, lets say you want to set a breapoint somewhere in libawt.so you do: gdb java_g (gdb) b main (gdb) r Hello To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 9 03:08:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA21296 for freebsd-java-outgoing; Mon, 9 Mar 1998 03:08:55 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from northwest.com (port28.northwest.com [204.119.42.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA21243 for ; Mon, 9 Mar 1998 03:08:46 -0800 (PST) (envelope-from stevemw@northwest.com) Received: from fuji (localhost [127.0.0.1]) by northwest.com (8.8.7/8.8.7) with ESMTP id CAA10873; Mon, 9 Mar 1998 02:55:15 -0800 (PST) (envelope-from stevemw@fuji) Message-Id: <199803091055.CAA10873@northwest.com> To: "Simon J. Gerraty" cc: freebsd-java@FreeBSD.ORG Subject: Re: VM Debugging: Problem with GDB and Shared Libs In-reply-to: Your message of "Mon, 09 Mar 1998 14:58:40 +1100." <199803090358.OAA29401@gate.quick.com.au> Date: Mon, 09 Mar 1998 02:55:15 -0800 From: Stephen Wynne Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199803090358.OAA29401@gate.quick.com.au>, "Simon J. Gerraty" writes: I've been doing a bit of this recently (on NetBSD which I'll assume is close enough), so this should point you in the right direction. Thanks! Here's your advice in a nutshell: (gdb) b main ... (gdb) r t ... (gdb) b java_main ... (gdb) c ... (gdb) b sysAddDLSegment ... (gdb) c ... (gdb) finish ... Now libawt.so is loaded into the VM... (gdb) b awt_util_reshape ... and there you have it. This was extremely useful. I was able to load all kinds of library symbols after getting to the breakpoint of sysAddDLSegment. With what you and Damon Permezel told me, I'm doing fine. I also "set verbose 1" and was able to watch symbols being loaded as I went along. It's interesting to see that AWT has timing problems under the debugger. And SwingSet seems just impossible to debug because it's too slow (or gets stuck in some kind of loop). Thanks, Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 9 18:37:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11960 for freebsd-java-outgoing; Mon, 9 Mar 1998 18:37:09 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet15.ozemail.com.au (oznet15.ozemail.com.au [203.2.192.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA11937 for ; Mon, 9 Mar 1998 18:37:06 -0800 (PST) (envelope-from joe.shevland@horizonti.com) Received: from jupiter ([203.33.128.245]) by oznet15.ozemail.com.au (8.8.4/8.6.12) with ESMTP id NAA27684 for ; Tue, 10 Mar 1998 13:33:00 +1100 (EST) Message-Id: <199803100233.NAA27684@oznet15.ozemail.com.au> From: "Joe Shevland" To: Subject: Classpath & URLs Date: Tue, 10 Mar 1998 13:31:15 +1100 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1162 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In writing this, the question sounds fairly stupid; having not tried it and not having the facilities to at the moment, I'm still curious. Can a Java application's classes be based, say, on a server, and accessed from a client machine using the java command line script/executable, passing the server URL/path in the classpath? e.g. from the client machine: java -classpath .:/classes/mypackage someClass Will the above work? Can you use other protocols like FTP, HTTP etc. in the URL if it does work? ---------- Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 10 07:42:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12454 for freebsd-java-outgoing; Tue, 10 Mar 1998 07:42:16 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from pluto.plutotech.com (mail.plutotech.com [206.168.67.137]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12421 for ; Tue, 10 Mar 1998 07:42:12 -0800 (PST) (envelope-from kelly@plutotech.com) Received: from plutotech.com (tampopo.plutotech.com [206.168.67.161]) by pluto.plutotech.com (8.8.7/8.8.5) with ESMTP id IAA11733; Tue, 10 Mar 1998 08:42:00 -0700 (MST) Message-ID: <35055F48.DD56F6E5@plutotech.com> Date: Tue, 10 Mar 1998 08:42:00 -0700 From: Sean Kelly Organization: Pluto Technologies X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Joe Shevland CC: freebsd-java@FreeBSD.ORG Subject: Re: Classpath & URLs References: <199803100233.NAA27684@oznet15.ozemail.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Can a Java application's classes be based, say, on a server, and accessed from > a client machine using the java command line script/executable, passing the > server URL/path in the classpath? The answer is a conditional "yes". The problem: a Java application can't do it out of the box. What you need to do is provide your own ClassLoader. Applets run in the appletviewer or in a web browser have such a customized ClassLoader that knows to turn a request for a certain class, say "fred.joe.Whatever", into a network request to the web server. The default ClassLoader for applications turns "fred.joe.Whatever" into "fred/joe/Whatever.class" and attempts to find that file by appending that string to each element of the current classpath. How much work is involved? Actually, not much. Most of java.net already has the things you need, and writing the ClassLoader itself is pretty simple. Take a look at java.lang.ClassLoader, especially the method loadClass. Good luck. --Sean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 10 15:23:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA26212 for freebsd-java-outgoing; Tue, 10 Mar 1998 15:23:11 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet15.ozemail.com.au (oznet15.ozemail.com.au [203.2.192.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26195 for ; Tue, 10 Mar 1998 15:22:52 -0800 (PST) (envelope-from joe.shevland@horizonti.com) Received: from jupiter ([203.33.128.245]) by oznet15.ozemail.com.au (8.8.4/8.6.12) with ESMTP id KAA12582; Wed, 11 Mar 1998 10:22:33 +1100 (EST) Message-Id: <199803102322.KAA12582@oznet15.ozemail.com.au> From: "Joe Shevland" To: "Sean Kelly" Cc: Subject: Re: Classpath & URLs Date: Wed, 11 Mar 1998 10:21:03 +1100 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1162 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ---------- : From: Sean Kelly : To: Joe Shevland : Cc: freebsd-java@FreeBSD.ORG : Subject: Re: Classpath & URLs : Date: Wednesday, 11 March 1998 2:42 : : > Can a Java application's classes be based, say, on a server, and accessed from : > a client machine using the java command line script/executable, passing the : > server URL/path in the classpath? : : The answer is a conditional "yes". : : How much work is involved? Actually, not much. Most of java.net : already has the things you need, and writing the ClassLoader itself is : pretty simple. Take a look at java.lang.ClassLoader, especially the : method loadClass. : : Good luck. : --Sean Perfect. I figured it might be in this area; thanks very much. Joe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 11 08:52:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07333 for freebsd-java-outgoing; Wed, 11 Mar 1998 08:52:26 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from seagull.cdrom.com (seagull.cdrom.com [204.216.27.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA07328 for ; Wed, 11 Mar 1998 08:52:24 -0800 (PST) (envelope-from cracauer@seagull.cdrom.com) Received: (from cracauer@localhost) by seagull.cdrom.com (8.8.8/8.6.6) id IAA14805 ; Wed, 11 Mar 1998 08:52:04 -0800 (PST) Message-ID: <19980311175203.35537@cons.org> Date: Wed, 11 Mar 1998 17:52:03 +0100 From: Martin Cracauer To: Stephen Ritter Cc: freebsd-java@FreeBSD.ORG Subject: Re: Java / CORBA? References: <3.0.3.32.19980306132739.00985580@happy.qualcomm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <3.0.3.32.19980306132739.00985580@happy.qualcomm.com>; from Stephen Ritter on Fri, Mar 06, 1998 at 01:27:39PM -0800 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In <3.0.3.32.19980306132739.00985580@happy.qualcomm.com>, Stephen Ritter wrote: > > Hello, I was wondering if there is anyone using Java and CORBA with FreeBSD. ports/devel/ilu In Makefile, enable Java support and get a 1.1 jdk from ports/lang/jdk or www.freebsd.org/java/ Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ BSD User Group Hamburg/Germany http://www.bsdhh.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 11 15:46:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10676 for freebsd-java-outgoing; Wed, 11 Mar 1998 15:46:35 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet15.ozemail.com.au (oznet15.ozemail.com.au [203.2.192.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10667 for ; Wed, 11 Mar 1998 15:46:33 -0800 (PST) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet15.ozemail.com.au (8.8.4/8.6.12) with ESMTP id KAA19039 for ; Thu, 12 Mar 1998 10:46:20 +1100 (EST) Message-ID: <350721E5.A8FC9A3A@horizonti.com> Date: Thu, 12 Mar 1998 10:44:37 +1100 From: Joe Shevland Organization: Horizon Technologies International X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Anti-aliasing Fonts Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Not that it is functionally important in any way, but I've noticed that Win95/NiceTry platforms anti-alias all font rendering on screen (may not be important but looks very good). Is this part of the Win95 look & feel, or is this going to be a standard for all look & feels? Will FBSD do this? ---------- Joe Shevland Joe.Shevland@HorizonTechnologies.com Horizon Technologies International To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 11 17:14:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24632 for freebsd-java-outgoing; Wed, 11 Mar 1998 17:14:19 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from multi36.netcomi.com (root@multi36.netcomi.com [204.58.155.236]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24621 for ; Wed, 11 Mar 1998 17:14:17 -0800 (PST) (envelope-from masrani@hotmail.com) Received: from hotmail.com (sjx-ca84-13.ix.netcom.com [207.94.112.141]) by multi36.netcomi.com (8.8.7/8.7.3) with ESMTP id TAA22429 for ; Wed, 11 Mar 1998 19:13:19 -0600 Message-ID: <35073519.A4E995D0@hotmail.com> Date: Wed, 11 Mar 1998 17:06:33 -0800 From: Netscaler Organization: Netscalar X-Mailer: Mozilla 4.04 [en] (Win95; U) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: subscribe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org subscribe masrani@yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 11 18:25:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07768 for freebsd-java-outgoing; Wed, 11 Mar 1998 18:25:12 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from mail1.mnsinc.com (mail1.mnsinc.com [206.55.3.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA07744 for ; Wed, 11 Mar 1998 18:24:57 -0800 (PST) (envelope-from Zoogie@mnsinc.com) Received: from mnsinc.com ([206.239.213.25]) by mail1.mnsinc.com (8.8.5/8.7.3) with ESMTP id VAA28355 for ; Wed, 11 Mar 1998 21:24:49 -0500 (EST) Message-ID: <350746BA.6724A715@mnsinc.com> Date: Wed, 11 Mar 1998 21:21:46 -0500 From: Michael Imamura Organization: UCOD Data Systems X-Mailer: Mozilla 4.04 [en] (Win95; I) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Anti-aliasing Fonts References: <350721E5.A8FC9A3A@horizonti.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Quoting Joe Shevland] > > Not that it is functionally important in any way, but I've noticed that > Win95/NiceTry platforms anti-alias all font rendering on screen (may not > be important but looks very good). Is this part of the Win95 look & > feel, or is this going to be a standard for all look & feels? Will FBSD > do this? >From my knowledge, I believe that the font anti-aliasing you've seen is from either someone using Microsoft Plus or Win95Gray, which enables this feature (I've heard rumors that this is actually a feature that is built-in that requires the M$ utility to enable -- anybody know if this is true?). Either way, it makes the on-screen fonts look terrific, it would be nice to be able to incorporate this into FreeBSD/XFree86 somehow (goodness knows Enlightenment is pretty enough already), at least it would help make those Java dialogs look a little less "blah". - Michael Imamura Ucod Data Systems http://ucod.home.ml.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 11 19:25:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16247 for freebsd-java-outgoing; Wed, 11 Mar 1998 19:25:08 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from freebase.camb.opengroup.org (freebase.camb.opengroup.org [130.105.3.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16240 for ; Wed, 11 Mar 1998 19:25:02 -0800 (PST) (envelope-from john@loverso.southborough.ma.us) Received: from loverso.southborough.ma.us (simplon.osf.org [130.105.7.200]) by freebase.camb.opengroup.org (8.8.8/8.8.7) with ESMTP id WAA22618; Wed, 11 Mar 1998 22:24:26 -0500 (EST) Received: from localhost.southborough.ma.us (localhost.southborough.ma.us [127.0.0.1]) by loverso.southborough.ma.us (8.8.7/8.6.9) with SMTP id WAA01787; Wed, 11 Mar 1998 22:24:24 -0500 (EST) Message-Id: <199803120324.WAA01787@loverso.southborough.ma.us> X-Authentication-Warning: loverso.southborough.ma.us: localhost.southborough.ma.us [127.0.0.1] didn't use HELO protocol To: Michael Imamura Cc: freebsd-java@FreeBSD.ORG Subject: Re: Anti-aliasing Fonts In-reply-to: Message from Michael Imamura <350746BA.6724A715@mnsinc.com> . X-Face: "UZ!}1W2N?eJdN(`1%|/OOPqJ).Idk?UyvWw'W-%`Gto8^IkEm>.g1O$[.;~}8E=Ire0|lO .o>:NlJS1@vO9bVmswRoq3j DdX9YGSeJ5a(mfX[1u>Z63G5_^+'8LVqjqvn X-Url: http://www.osf.org/~loverso/ Date: Wed, 11 Mar 1998 22:24:23 -0500 From: John Robert LoVerso Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [sorry... this diverges widely off the Java topic of this list] You can download the "free upgrade" to Win95 to allow it to dynamically switch on and off anti-aliasing of screen fonts. Go MS and look for the "Windows 95 Font Smoother". As for "doing this in FreeBSD", this whole issue is an XFree86 (and X Window System) issue, and has nothing to do (directly) with Java or FreeBSD. Anti-aliasing is primarily done on scalable fonts. There are two significant problems with this and the X Window System: 1. Most people using X use bitmap fonts because most of the apps use these for purely historical reasons ("was there first" and "faster"). 2. Scalable font support is available, but not widely used. Many systems have included this as a "value-added", and thus, incompatible feature. HP-UX falls in this camp. The base X11 distributions have included some vender-contributed rasterizers for scalable fonts; i.e., those for Adobe Type 1 (PostScript) and Speedo fonts. But, the actual selection of available scalable fonts has been weak. This is because only a few fonts are part of the base distribution. Some system venders ship a good selection of scalable typefaces (i.e., Digital, SGI), typically taking those from DPS. However, XFree86 is stuck with just the fonts from the base X distribution. 3. Once you've got a better selection of scalable fonts, then you need to fix the rasterizers to include anti-alias support. This is much harder than you think, because much of the internal font model to X does layout using bitmaps, i.e., 1 bit deep images. Anti-aliasing requires pixmaps in order to provide grey scales for shading/smoothing. Too much of this is exported thru X APIs to make it easy to fix without rewriting clients. "BUT", you'll say, "I've seen anti-aliased fonts used in Ghostscript (using the x11alpha device) or GIMP. This is done outside the X server, as those applications aren't drawing characters but instead implementing their own rasterizers that do layout with pixmaps. So, it is possible to do at the application level, but hardered to do overall to X. This could be done within a particular graphic toolkit to benefit applications using that toolkit, but it wouldn't help other apps. And, there'd be a considerable performance penalty for rendering all text using pixmaps. I'll note that even the new TrueType X11 font server (using the FreeType library) does not implement anti-aliasing of glyphs for exactly reason #3. John (speaking on his own, not as an employee of The Open Group; besides, I'm not affiliated with the Desktop (X) Project) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 00:22:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26748 for freebsd-java-outgoing; Thu, 12 Mar 1998 00:22:48 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from mailsrv.linkvest.ch (mailsrv.linkvest.ch [194.209.53.51]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA26740 for ; Thu, 12 Mar 1998 00:22:46 -0800 (PST) (envelope-from claudio@nty.com) Received: from wosf03.linkvest.ch ([194.209.53.130]) by mailsrv.linkvest.ch with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.1960.3) id FWDJSSDW; Thu, 12 Mar 1998 09:23:52 +0100 Message-ID: <35079BA1.2781@nty.com> Date: Thu, 12 Mar 1998 09:24:01 +0100 From: Claudio Eichenberger Organization: NTY Consulting X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: Nate Williams CC: Amancio Hasty , freebsd-java@FreeBSD.ORG Subject: Re: ld.so failed: C'ant find shared library libjava.so.1.1 References: <199803061631.RAA26947@nty.ch> <199803061710.JAA03451@rah.star-gate.com> <199803061715.KAA27326@mt.sri.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nate: Nate Williams wrote: > > > > >> + /usr/local/jdk1.1.5/bin/i386/green_threads/java-ms8m sun.tools.javac.Main CardTest.java > > > > > > > > Try this : > > ktrace /usr/local/jdk1.1.5/bin/i386/green_threads/java -ms8m sun.tools.javac.Main CardTest.java > > kdump >file > > Browse thru the file and look for libjava.so.1.1. > > That's not necessary. The wrapper file is all setup correctly, and his > environment couldn't have screwed it up since it makes sure to do things > correctly. > > It's simply not working. I finally found the culprit, CLASSPATH was set wrong in ~/.login . It was set to .:/usr/local/jdk1.1/lib/classes.zib instead of .:/usr/local/jdk1.1.5/lib/classes.zib javac from JDK1.1.5 runs smoothly now ! Thanks for your support :Claudio http://www.jted.com/ > > Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 00:27:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA27014 for freebsd-java-outgoing; Thu, 12 Mar 1998 00:27:07 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA27009 for ; Thu, 12 Mar 1998 00:27:06 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id AAA02906; Thu, 12 Mar 1998 00:26:58 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803120826.AAA02906@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Claudio Eichenberger cc: Nate Williams , freebsd-java@FreeBSD.ORG Subject: Re: ld.so failed: C'ant find shared library libjava.so.1.1 In-reply-to: Your message of "Thu, 12 Mar 1998 09:24:01 +0100." <35079BA1.2781@nty.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 12 Mar 1998 00:26:58 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Cool, Don't forget the ktrace trick is real neat for tracing class search problems . Have Fun, Amancio > Nate: > > Nate Williams wrote: > > > > > > >> + /usr/local/jdk1.1.5/bin/i386/green_threads/java-ms8m sun.tools.javac.Main CardTest.java > > > > > > > > > > > Try this : > > > ktrace /usr/local/jdk1.1.5/bin/i386/green_threads/java -ms8m sun.tools.javac.Main CardTest.java > > > kdump >file > > > Browse thru the file and look for libjava.so.1.1. > > > > That's not necessary. The wrapper file is all setup correctly, and his > > environment couldn't have screwed it up since it makes sure to do things > > correctly. > > > > It's simply not working. > > I finally found the culprit, CLASSPATH was set wrong in ~/.login . It > was set to > > .:/usr/local/jdk1.1/lib/classes.zib > > instead of > > .:/usr/local/jdk1.1.5/lib/classes.zib > > javac from JDK1.1.5 runs smoothly now ! > Thanks for your support > > :Claudio http://www.jted.com/ > > > > > Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 03:09:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12007 for freebsd-java-outgoing; Thu, 12 Mar 1998 03:09:59 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.6.51]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA12002; Thu, 12 Mar 1998 03:09:57 -0800 (PST) (envelope-from albast@xs4all.nl) Received: from xs2.xs4all.nl (albast@xs2.xs4all.nl [194.109.6.43]) by smtp1.xs4all.nl (8.8.8/8.8.8) with ESMTP id MAA09952; Thu, 12 Mar 1998 12:09:55 +0100 (MET) Received: (from albast@localhost) by xs2.xs4all.nl (8.8.6/8.8.6) id MAA01497; Thu, 12 Mar 1998 12:09:54 +0100 (MET) From: albast Message-Id: <199803121109.MAA01497@xs2.xs4all.nl> Subject: Re: Anti-aliasing Fonts In-Reply-To: <199803120324.WAA01787@loverso.southborough.ma.us> from John Robert LoVerso at "Mar 11, 98 10:24:23 pm" To: Java@FreeBSD.ORG Date: Thu, 12 Mar 1998 12:09:53 +0100 (MET) Cc: ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL37 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > As for "doing this in FreeBSD", this whole issue is an XFree86 (and X > Window System) issue, and has nothing to do (directly) with Java or FreeBSD. > Correct :-) I'm planning to commit a port of Xfstt-0.9.7 (along with YACL-1.7b). There were some unforseen things that took precedence, but I'll try to finish these ports this weekend. This is a X fs for TrueType fonts which uses the freetype library. I believe it can do the antialiasing you are referring to. (not sure though..) thanks for your patience --jeroen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 04:25:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA17931 for freebsd-java-outgoing; Thu, 12 Mar 1998 04:25:34 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from ms11.hinet.net (root@ms11.hinet.net [168.95.4.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA17924 for ; Thu, 12 Mar 1998 04:25:31 -0800 (PST) (envelope-from jwlo@ms11.hinet.net) Received: from ms11.hinet.net (h35.s7.ts32.hinet.net [163.32.7.35]) by ms11.hinet.net (8.8.8/8.8.8) with ESMTP id UAA09320 for ; Thu, 12 Mar 1998 20:27:43 +0800 (CST) Message-ID: <3507D377.5D24E5EF@ms11.hinet.net> Date: Thu, 12 Mar 1998 20:22:15 +0800 From: Doug Lo X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: subscribe Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 11:30:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08843 for freebsd-java-outgoing; Thu, 12 Mar 1998 11:30:56 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from spock.tinet.ie (spock.tinet.ie [159.134.237.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08274 for ; Thu, 12 Mar 1998 11:29:27 -0800 (PST) (envelope-from ricko@tinet.ie) Received: from default (p13.dungarvan1.tinet.ie [159.134.234.13]) by spock.tinet.ie (8.8.8/8.8.7) with SMTP id TAA21568 for ; Thu, 12 Mar 1998 19:28:48 GMT Message-Id: <3.0.5.32.19980312192451.007a7510@mail1.tinet.ie> X-Sender: ricko@mail1.tinet.ie X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Thu, 12 Mar 1998 19:24:51 +1100 To: freebsd-java@FreeBSD.ORG From: Richard Fahey Subject: jdk and appletviewer Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To whom it may concern, I would be most greatful if anyone could help me find a quick and simple solution to the problem below I am using winedit and jdk1.1.5 at home and everything is working fine except I cannot get applets working. I have coppied working applets but they do not execute on my computer at home. They seem to work in the netscape browser but not in an appletviewer. Whenever I try to execute an applet or run the appletviewer on a class file, I get the following error Invalid: JAVA_HOME: c:\cafe\JAVA and nothing executes. I think that maybe I installed come kind of cafe program once but then uninstalled it again. Do you know is there anyway around this or can I modify some files inorder to make it work? I have modified my autoexec.bat file to the paths in jdk so that is not the problem. Is there any files I can copy on to override this or any files I can delete and put other files in ther place. I downloaded the whole jdk1.1.5 from the sun site without any hitches so I don't know what is wrong maybe its my winedit editor or something else? I really don't have a clue. Any ideas?? thanks a lot Richie Fahey mailto:ricko@tinet.ie http://homepage.tinet.ie/~ricko +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +"It only takes 1 tree to make a thousand matches + + but 1 match to burn a thousand trees. + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 12:51:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA24935 for freebsd-java-outgoing; Thu, 12 Mar 1998 12:51:23 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA24887 for ; Thu, 12 Mar 1998 12:51:09 -0800 (PST) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id NAA28536; Thu, 12 Mar 1998 13:51:01 -0700 (MST) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id NAA11206; Thu, 12 Mar 1998 13:50:59 -0700 Date: Thu, 12 Mar 1998 13:50:59 -0700 Message-Id: <199803122050.NAA11206@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Richard Fahey Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk and appletviewer In-Reply-To: <3.0.5.32.19980312192451.007a7510@mail1.tinet.ie> References: <3.0.5.32.19980312192451.007a7510@mail1.tinet.ie> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I would be most greatful if anyone could help me find a quick and simple > solution to the problem below Sure, delete Windows and install FreeBSD. > I am using winedit and jdk1.1.5 at home .... > Whenever I try to execute an applet or run the appletviewer on a class > file, I get the following error Invalid: JAVA_HOME: c:\cafe\JAVA and > nothing executes. This is a windows problem, and should be directed at a windows/java support group. Symantec has a number of support optiong to answer you question. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 14:12:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA10050 for freebsd-java-outgoing; Thu, 12 Mar 1998 14:12:16 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet15.ozemail.com.au (oznet15.ozemail.com.au [203.2.192.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA10011 for ; Thu, 12 Mar 1998 14:12:07 -0800 (PST) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet15.ozemail.com.au (8.8.4/8.6.12) with ESMTP id JAA00385; Fri, 13 Mar 1998 09:11:41 +1100 (EST) Message-ID: <35085D32.1D0FB08D@horizonti.com> Date: Fri, 13 Mar 1998 09:09:54 +1100 From: Joe Shevland Organization: Horizon Technologies International X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: Richard Fahey CC: freebsd-java@FreeBSD.ORG Subject: Re: jdk and appletviewer References: <3.0.5.32.19980312192451.007a7510@mail1.tinet.ie> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Richard Fahey wrote: > > To whom it may concern, > [snip] > Whenever I try to execute an applet or run the appletviewer on a class > file, I get the following error Invalid: JAVA_HOME: c:\cafe\JAVA and > nothing executes. > [snip] > Any ideas?? > We're in freebsd-java, but... 1. A few to try (and note that your browser works because it uses its own virtual machine, and so is not affected by your local settings). >From a DOS prompt, try typing: SET JAVA_HOME= This will unset the environment variable. Test the appletviewer or whatever (in this same DOS window) to see if it is now working. If this is the case, and JAVA_HOME is not set in the autoexec.bat file, search the Windows registry (using RegEdit, installed by default) for the key JAVA_HOME to see what is setting it. Upon finding it, delete it will extreme prejudice :) The System control panel of WinNT boxes can also be used to set up environment variables. 2. Make sure that your PATH includes the 'bin' directory of the JDK install directory. Make sure your CLASSPATH is set correctly. Examples follow: SET PATH=%PATH%;C:\JDK1.1.5\BIN SET CLASSPATH=.;C:\JDK1.1.5\LIB\CLASSES.ZIP 3. If these are correct, try setting JAVA_HOME yourself in the autoexec.bat to point to the top level directory of the installed JDK: SET JAVA_HOME=C:\JDK1.1.5 Actually, I thought after about JDK 1.1.3 or so that JAVA_HOME is the only one that needs to be set, as well as the PATH inclusion. Hope it helps... -- Joe Shevland Joe.Shevland@HorizonTechnologies.com Horizon Technologies International To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 16:46:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09217 for freebsd-java-outgoing; Thu, 12 Mar 1998 16:46:18 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA09187 for ; Thu, 12 Mar 1998 16:46:11 -0800 (PST) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id RAA00127; Thu, 12 Mar 1998 17:46:07 -0700 (MST) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id RAA12187; Thu, 12 Mar 1998 17:46:04 -0700 Date: Thu, 12 Mar 1998 17:46:04 -0700 Message-Id: <199803130046.RAA12187@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Claudio Eichenberger Cc: Nate Williams , Amancio Hasty , freebsd-java@FreeBSD.ORG Subject: Re: ld.so failed: C'ant find shared library libjava.so.1.1 In-Reply-To: <35079BA1.2781@nty.com> References: <199803061631.RAA26947@nty.ch> <199803061710.JAA03451@rah.star-gate.com> <199803061715.KAA27326@mt.sri.com> <35079BA1.2781@nty.com> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > It's simply not working. > > I finally found the culprit, CLASSPATH was set wrong in ~/.login . ... > javac from JDK1.1.5 runs smoothly now ! > Thanks for your support Glad to hear it! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 19:46:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11561 for freebsd-java-outgoing; Thu, 12 Mar 1998 19:46:51 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from ns1.souken.co.jp (ns1.souken.co.jp [210.161.222.98]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11551 for ; Thu, 12 Mar 1998 19:46:43 -0800 (PST) (envelope-from higashi@souken.co.jp) Received: from souken.co.jp ([192.168.0.6]) by ns1.souken.co.jp (post.office MTA v1.9.3 ID# 0100021-17099) with ESMTP id AAA294 for ; Fri, 13 Mar 1998 12:46:44 +0900 Message-ID: <3508AC16.596A3DC1@souken.co.jp> Date: Fri, 13 Mar 1998 12:46:30 +0900 From: Higashi Toshihiko X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: (=?iso-2022-jp?B?GyRCN29MPiRKJDcbKEI=?=) Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 21:57:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29552 for freebsd-java-outgoing; Thu, 12 Mar 1998 21:57:43 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA29537 for ; Thu, 12 Mar 1998 21:57:35 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id VAA06604 for ; Thu, 12 Mar 1998 21:57:33 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803130557.VAA06604@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-java@FreeBSD.ORG Subject: http://www.oi.com/cgi-bin/FormHandler.cgi Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 12 Mar 1998 21:57:33 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The latest version of TogetherJ appears to work better . TogetherJ is a java class object oriented editor written in java. Cheers, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 12 23:36:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10885 for freebsd-java-outgoing; Thu, 12 Mar 1998 23:36:16 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10880 for ; Thu, 12 Mar 1998 23:36:14 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id XAA07233; Thu, 12 Mar 1998 23:36:09 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803130736.XAA07233@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Mark Diekhans cc: freebsd-java@FreeBSD.ORG Subject: Re: http://www.oi.com/cgi-bin/FormHandler.cgi In-reply-to: Your message of "Thu, 12 Mar 1998 23:30:34 PST." <199803130730.XAA04451@osprey.grizzly.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 12 Mar 1998 23:36:09 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Where does one find this package? The standard search engines > draw a blank. > > Thanks > markd > > >The latest version of TogetherJ appears to work better . > > > >TogetherJ is a java class object oriented editor written in java. > > > > Cheers, Oops, try : http://www.oi.com/ Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 13 10:08:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11239 for freebsd-java-outgoing; Fri, 13 Mar 1998 10:08:00 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA11207 for ; Fri, 13 Mar 1998 10:07:50 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id KAA11345 for ; Fri, 13 Mar 1998 10:07:47 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803131807.KAA11345@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-java@FreeBSD.ORG Subject: http://www.bulletproof.com/JDesignerPro/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 13 Mar 1998 10:07:47 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone managed to get JDesignerPro to work with FreeBSD? After I installed it tries to open data files a la windows: \JDesigner\data\... Is there any option or environment variable which I can set so that java does the "right" thing. Tnks, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Mar 15 19:44:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA01702 for freebsd-java-outgoing; Sun, 15 Mar 1998 19:44:59 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from teel.info-noire.com (XP11-1-1-04.interlinx.qc.ca [207.253.79.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA01668 for ; Sun, 15 Mar 1998 19:44:40 -0800 (PST) (envelope-from alex@gel.usherb.ca) Received: from localhost (alex@localhost) by teel.info-noire.com (8.8.8/8.8.8) with SMTP id UAA03836 for ; Sun, 15 Mar 1998 20:46:14 -0500 (EST) (envelope-from alex@teel.info-noire.com) Date: Sun, 15 Mar 1998 20:46:14 -0500 (EST) From: Alex Boisvert Reply-To: boia01@gel.usherb.ca To: freebsd-java@FreeBSD.ORG Subject: BISS-AWT 0.94 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello everybody - I've just finished compiling BISS-AWT 0.94 on my FreeBSD machine here. Some of you many not know about BISS-AWT so that's why I'm posting... BISS-AWT is a replacement for Sun's AWT package. It provides many enhanced "widgets" and tools for Java developpers and it's *much* faster than Sun's AWT. Among other things, BISS includes JDE, a pure java integrated environment/source editor/widget layout editor. Also, BISS-AWT includes a native layer (peers and such) for Kaffe 0.92 which means that we can now use Kaffe and have a nice GUI. BTW: It's now compatible with the JDK 1.1.x event model. A few pointers (might not have been updated since the latest BISS-AWT release, though...): Home page: http://www.biss-net.com FTP mirrors: http://www.blackdown.org/java-linux/Mirrors.cgi Note that you'll have to modify the Makefiles/source a bit to run under FreeBSD. Ask me for details... >From what I've tried, it won't run all of your existing Java apps (emulating Sun's AWT widgets/peers) but if you use BISS-AWT explicitly in your apps, it shines. Regards, Alex Boisvert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 16 15:33:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04242 for freebsd-java-outgoing; Mon, 16 Mar 1998 15:33:24 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from northwest.com (root@port14.northwest.com [204.119.42.26]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04205 for ; Mon, 16 Mar 1998 15:33:20 -0800 (PST) (envelope-from stevemw@northwest.com) Received: from fuji (stevemw@localhost [127.0.0.1]) by northwest.com (8.8.8/8.8.7) with ESMTP id PAA26805; Mon, 16 Mar 1998 15:32:06 -0800 (PST) (envelope-from stevemw@fuji) Message-Id: <199803162332.PAA26805@northwest.com> To: freebsd-java@FreeBSD.ORG cc: lesstif@Hungry.COM Subject: Lesstif 0.83, JFC 1.0.1, JDK 1.1.5 on FreeBSD 2.2-STABLE Date: Mon, 16 Mar 1998 15:32:05 -0800 From: Stephen Wynne Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org These are premature observations, but they are encouraging. I just got a fresh build with the 2/25/98 FreeBSD JDK 1.1.5 diffs with Lesstif 0.83 up and running. (My P133/64M/512kL2 system was cvsup'ed to 2.2-STABLE the previous Sunday.) I went through all of SwingSet from JFC 1.0.1 (as I had done before) with only one "hang" this time. I suspect Java and not Lesstif as a potential culprit, as well, this time. This compares to about five spectacular (and repeatable) crashes tracable to Lesstif in its last release. I'd like to thank the Lesstif people for requesting as much information from me as I could deliver about the problems I reported earlier. I hope that what little I gave them helped them to produce this more compatible release. With just a few minutes of testing, here are the problems I did have: 1. As mentioned above, in the "DebugGraphics" tab, I was able to (apparently) hang the VM after running through all of the repaints once and then quickly changing the checking options. It's quite possible that if I had waited, things would have settled down eventually. 2. Any dialogs that appear don't seem to be tall enough on my 1152x864 display; buttons at the bottom of the screen are chopped off. But no fatal signals this time! I'd say the Lesstif people have been making a lot of progress here :-) Thanks, Steve P.S. With Netscape source about to be released, I'd say the Lesstif people have even more reason to feel that their work is of value. And with the potential for Netscape on UNIX to work with the Java Activator API, the Linux and *BSD porting communities should be very pleased indeed if Lesstif continues to solidify for Java. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 16 16:25:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19370 for freebsd-java-outgoing; Mon, 16 Mar 1998 16:25:02 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from hq.freegate.com (ns.freegate.com [208.226.86.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA19362 for ; Mon, 16 Mar 1998 16:25:01 -0800 (PST) (envelope-from sbb@freegate.com) Received: (qmail+freegate 28162 invoked by alias); 17 Mar 1998 00:24:59 -0000 Received: from ws212.hq.freegate.com (HELO SBB????????????) (208.226.86.212) by ns.hq.freegate.com with SMTP; 17 Mar 1998 00:24:59 -0000 Received: by SBB with Microsoft Mail id <01BD50F8.8B6363A0@SBB >; Mon, 16 Mar 1998 16:28:25 -0800 Message-ID: <01BD50F8.8B6363A0@SBB > From: Steve Byrne To: "freebsd-java@FreeBSD.org" , "'Stephen Wynne'" Cc: "lesstif@Hungry.COM" Subject: RE: Lesstif 0.83, JFC 1.0.1, JDK 1.1.5 on FreeBSD 2.2-STABLE Date: Mon, 16 Mar 1998 16:28:24 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id QAA19365 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Speaking on behalf of the Linux porting community, I have to agree that Lesstif solidification is a very good thing -- this report is positive enough that I'm going to attempt to build with Lesstif on Linux for the v6 version of the JDK 1.1.5 Linux port. Thanks for the report on your experiences, and thanks to the Lesstif folks for working hard on freeing the world from OSF dependence. Steve ---------- From: Stephen Wynne Sent: Monday, March 16, 1998 3:32 PM To: freebsd-java@FreeBSD.org Cc: lesstif@Hungry.COM Subject: Lesstif 0.83, JFC 1.0.1, JDK 1.1.5 on FreeBSD 2.2-STABLE P.S. With Netscape source about to be released, I'd say the Lesstif people have even more reason to feel that their work is of value. And with the potential for Netscape on UNIX to work with the Java Activator API, the Linux and *BSD porting communities should be very pleased indeed if Lesstif continues to solidify for Java. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Mar 16 22:28:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA10023 for freebsd-java-outgoing; Mon, 16 Mar 1998 22:28:52 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from gate.quick.com.au (gate.quick.com.au [203.12.250.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA10011 for ; Mon, 16 Mar 1998 22:28:47 -0800 (PST) (envelope-from sjg@quick.com.au) Received: (from sjg@localhost) by gate.quick.com.au (8.8.8/8.7.3) id RAA27142; Tue, 17 Mar 1998 17:28:23 +1100 (EST) Date: Tue, 17 Mar 1998 17:28:23 +1100 (EST) From: "Simon J. Gerraty" Message-Id: <199803170628.RAA27142@gate.quick.com.au> To: Stephen Wynne Cc: freebsd-java@FreeBSD.ORG Subject: Re: Lesstif 0.83, JFC 1.0.1, JDK 1.1.5 on FreeBSD 2.2-STABLE References: <199803162332.PAA26805@northwest.com> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Stephen Wynne writes: >I went through all of SwingSet from JFC 1.0.1 (as I had done before) >with only one "hang" this time. I suspect Java and not Lesstif as a >potential culprit, as well, this time. This compares to about five >spectacular (and repeatable) crashes tracable to Lesstif in its last >release. FYI, a very simple patch to lesstif-0.82 and the patch below, make AWT behave quite well with lesstif. I know the lesstif patch should be in 0.83 so I won't bother repeating it. >I'd like to thank the Lesstif people for requesting as much I'll second that. I was extremely pleased with the level and speed of response I got from the lesstif list. A pitty it took me so long to work out what bug I was chasing before I asked :-) >2. Any dialogs that appear don't seem to be tall enough on my 1152x864 > display; buttons at the bottom of the screen are chopped off. The diff below does away with the 25,5,5,5 hack in MFramePeer.java and is the other half of one of the changes made to awt_Frame.c I didn't know anyone on this list was still using lesstif, so just change the __NetBSD__ to USING_LESSTIF :-) --sjg --- src/netbsd/java/runtime/properties_md.c.~1~ Mon Mar 2 13:27:51 1998 +++ src/netbsd/java/runtime/properties_md.c Sat Mar 14 01:34:53 1998 @@ -105,6 +106,19 @@ if (v != NULL) PUTPROP(props, "awt.toolkit", v); + /* + * REVISIST: + * The 25,5,5,5 defaults in MFramePeer.java do not work with + * lesstif, so override them. We've already fixed awt_Frame.c to + * handle this. + */ +#ifdef __NetBSD__ + PUTPROP(props, "awt.frame.topInset", "0"); + PUTPROP(props, "awt.frame.bottomInset", "0"); + PUTPROP(props, "awt.frame.leftInset", "0"); + PUTPROP(props, "awt.frame.rightInset", "0"); +#endif + /* * XXX - environmental override for os.name * Used for JWS (at least), so it can be made to think we are To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 17 06:10:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA18162 for freebsd-java-outgoing; Tue, 17 Mar 1998 06:10:54 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA18156 for ; Tue, 17 Mar 1998 06:10:48 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.7/8.8.7) id PAA00665 for java@freebsd.org; Tue, 17 Mar 1998 15:10:48 +0100 (MET) (envelope-from kuku) Date: Tue, 17 Mar 1998 15:10:48 +0100 (MET) From: Christoph Kukulies Message-Id: <199803171410.PAA00665@gilberto.physik.RWTH-Aachen.DE> To: java@FreeBSD.ORG Subject: Mapedit 2.3 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org While seeking for a mapping tool for webpage design I came acress mapedit (2.3 in it's latest incarnation) requiring java. So I downloaded jdk1.1.5 for FreeBSD and installed it in /usr/local, put /usr/local/jdk1.1.5/bin into my path and started (in the mapedit2.3 directory): java Mapedit result: Illegal instruction trying to run other examples from the demos, e.g. Animator, javac Animator, results in the same error. Could there be an old classes file in the CLASSPATH? I unsetenv CLASSPATH also to no avail. Any ideas? -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 17 06:45:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22493 for freebsd-java-outgoing; Tue, 17 Mar 1998 06:45:52 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from iglou.com (exim@iglou2.iglou.com [192.107.41.17]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id GAA22479 for ; Tue, 17 Mar 1998 06:45:43 -0800 (PST) (envelope-from patrick@cre8tivegroup.com) Received: from gateway.cre8tivegroup.com [204.255.227.104] by iglou.com with esmtp (8.7.3/8.6.12) id 0yExc1-0000lc-00; Tue, 17 Mar 1998 09:45:05 -0500 Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199803171410.PAA00665@gilberto.physik.RWTH-Aachen.DE> Date: Tue, 17 Mar 1998 09:45:32 -0500 (EST) Organization: The Creative Group From: Patrick Gardella To: Christoph Kukulies Subject: RE: Mapedit 2.3 Cc: java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You need to modify the mapedit sh script to tell it where things are. It handles it all from there. Mine is working just fine here. Patrick On 17-Mar-98 Christoph Kukulies wrote: > > While seeking for a mapping tool for webpage design I came > acress mapedit (2.3 in it's latest incarnation) requiring java. > > So I downloaded jdk1.1.5 for FreeBSD and installed it in /usr/local, > put /usr/local/jdk1.1.5/bin into my path and started (in the mapedit2.3 > directory): > > java Mapedit > > result: Illegal instruction > > trying to run other examples from the demos, e.g. Animator, javac > Animator, results in the same error. > > Could there be an old classes file in the CLASSPATH? > > I unsetenv CLASSPATH also to no avail. > > Any ideas? > > > -- > Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 17 08:40:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA19134 for freebsd-java-outgoing; Tue, 17 Mar 1998 08:40:27 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA18729 for ; Tue, 17 Mar 1998 08:39:39 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.7/8.8.7) id RAA01164; Tue, 17 Mar 1998 17:39:23 +0100 (MET) (envelope-from kuku) Message-ID: <19980317173923.01896@gil.physik.rwth-aachen.de> Date: Tue, 17 Mar 1998 17:39:23 +0100 From: Christoph Kukulies To: Patrick Gardella Cc: Christoph Kukulies , java@FreeBSD.ORG Subject: Re: Mapedit 2.3 References: <199803171410.PAA00665@gilberto.physik.RWTH-Aachen.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Patrick Gardella on Tue, Mar 17, 1998 at 09:45:32AM -0500 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Mar 17, 1998 at 09:45:32AM -0500, Patrick Gardella wrote: > You need to modify the mapedit sh script to tell it where things are. It > handles it all from there. Mine is working just fine here. Thanks. Works fine now here too. > > Patrick > > > On 17-Mar-98 Christoph Kukulies wrote: > > > > While seeking for a mapping tool for webpage design I came > > acress mapedit (2.3 in it's latest incarnation) requiring java. > > > > So I downloaded jdk1.1.5 for FreeBSD and installed it in /usr/local, > > put /usr/local/jdk1.1.5/bin into my path and started (in the mapedit2.3 > > directory): > > > > java Mapedit > > > > result: Illegal instruction > > > > trying to run other examples from the demos, e.g. Animator, javac > > Animator, results in the same error. > > > > Could there be an old classes file in the CLASSPATH? > > > > I unsetenv CLASSPATH also to no avail. > > > > Any ideas? > > > > > > -- > > Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-java" in the body of the message -- --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Mar 17 17:25:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15754 for freebsd-java-outgoing; Tue, 17 Mar 1998 17:25:39 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA15748 for ; Tue, 17 Mar 1998 17:25:37 -0800 (PST) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 17 Mar 1998 20:25:02 -0500 (EST) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA11339; Tue, 17 Mar 98 20:25:00 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id UAA13835; Tue, 17 Mar 1998 20:24:45 -0500 Message-Id: <19980317202444.57262@ct.picker.com> Date: Tue, 17 Mar 1998 20:24:44 -0500 From: Randall Hopper To: java@FreeBSD.ORG Subject: Reflection Test: Bug or Feature? Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=a8Wt8u1KmwUX3Y2C X-Mailer: Mutt 0.89.1i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Running through the examples in Core Java 1.1 (Horstmann & Cornell) with the FreeBSD JDK 1.1.5 port, V98-2-25 (thanks for the port guys!). There's this ReflectionTest.java program (Ch5, Ex5-4; pp. 187-8) that uses reflect to print out a class definition for any class the JavaVM knows about. Running it on "java.lang.Double" prints respectable output that matches the book (see Attachment 1), but running it on "java.util.Date" produces (what appear to be) corrupt values for the last two class constants: private static final long serialVersionUID; private static final [Ljava.lang.String; wtb; private static final [I ttb; } (see Attachment 2 for full output) Is this a bug, or something I just don't know yet. Here's a shortened program that dumps the fields of "java.util.Date" so you can see this: import java.lang.reflect.*; public class RefTest { public static void main(String[] args) { String cl_name = "java.util.Date"; Class cl = null; try { cl = Class.forName( cl_name ); } catch(ClassNotFoundException e) { System.out.println( "Unknown class" ); System.exit(1); } Field [] fields = cl.getDeclaredFields(); for ( int i = 0; i < fields.length; i++ ) { Field f = fields[i]; Class type = f.getType(); String name = f.getName(); System.out.println( Modifier.toString( f.getModifiers() ) + " " + type.getName() + " " + name + ";" ); } } } Thanks, Randall --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="OUT.java.lang.Double" > java ReflectionTest Please enter a class name (e.g. java.util.Date): java.lang.Double class java.lang.Double extends java.lang.Number { public java.lang.Double(double); public java.lang.Double(java.lang.String); public static java.lang.String toString(double); public static java.lang.Double valueOf(java.lang.String); public static boolean isNaN(double); public static boolean isInfinite(double); public boolean isNaN(); public boolean isInfinite(); public java.lang.String toString(); public byte byteValue(); public short shortValue(); public int intValue(); public long longValue(); public float floatValue(); public double doubleValue(); public int hashCode(); public boolean equals(java.lang.Object); public static native long doubleToLongBits(double); public static native double longBitsToDouble(long); static native double valueOf0(java.lang.String); public static final double POSITIVE_INFINITY; public static final double NEGATIVE_INFINITY; public static final double NaN; public static final double MAX_VALUE; public static final double MIN_VALUE; public static final java.lang.Class TYPE; private double value; private static final long serialVersionUID; } --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="OUT.java.util.Date" > java ReflectionTest Please enter a class name (e.g. java.util.Date): java.util.Date class java.util.Date { public java.util.Date(); public java.util.Date(long); public java.util.Date(int, int, int); public java.util.Date(int, int, int, int, int); public java.util.Date(int, int, int, int, int, int); public java.util.Date(java.lang.String); public static long UTC(int, int, int, int, int, int); public static long parse(java.lang.String); public int getYear(); public void setYear(int); public int getMonth(); public void setMonth(int); public int getDate(); public void setDate(int); public int getDay(); public int getHours(); public void setHours(int); public int getMinutes(); public void setMinutes(int); public int getSeconds(); public void setSeconds(int); public long getTime(); public void setTime(long); public boolean before(java.util.Date); public boolean after(java.util.Date); public boolean equals(java.lang.Object); public int hashCode(); public java.lang.String toString(); public java.lang.String toLocaleString(); public java.lang.String toGMTString(); public int getTimezoneOffset(); private void writeObject(java.io.ObjectOutputStream); private void readObject(java.io.ObjectInputStream); private void checkCal(); private void checkModified(); private transient java.util.Calendar cal; private transient long fastTime; private transient boolean modified; private static final long serialVersionUID; private static final [Ljava.lang.String; wtb; private static final [I ttb; } --a8Wt8u1KmwUX3Y2C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 11:09:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA17926 for freebsd-java-outgoing; Thu, 19 Mar 1998 11:09:20 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from phoenix.its.rpi.edu (dec@phoenix.its.rpi.edu [128.113.161.45]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA17855 for ; Thu, 19 Mar 1998 11:09:04 -0800 (PST) (envelope-from dec@phoenix.its.rpi.edu) Received: from localhost (dec@localhost) by phoenix.its.rpi.edu (8.8.8/8.8.7) with SMTP id OAA21443 for ; Thu, 19 Mar 1998 14:08:47 -0500 (EST) (envelope-from dec@phoenix.its.rpi.edu) Date: Thu, 19 Mar 1998 14:08:47 -0500 (EST) From: "David E. Cross" To: freebsd-java@FreeBSD.ORG Subject: jdk1.1.5 and ICQ Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am having trouble connecting to the ICQW network with JDK 1.1.5, it does not seem to ever send any packets out. (this is with TCPDUMP on the same host.) Any known problems with this, or additionaly information I could provide? -- David Cross UNIX Systems Administrator GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 11:21:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA19765 for freebsd-java-outgoing; Thu, 19 Mar 1998 11:21:33 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from iglou.com (exim@iglou1.iglou.com [192.107.41.3]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id LAA19759 for ; Thu, 19 Mar 1998 11:21:25 -0800 (PST) (envelope-from patrick@cre8tivegroup.com) Received: from gateway.cre8tivegroup.com [204.255.227.82] by iglou.com with esmtp (8.7.3/8.6.12) id 0yFkrh-0004uW-00; Thu, 19 Mar 1998 14:20:34 -0500 Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 19 Mar 1998 14:20:45 -0500 (EST) Organization: The Creative Group From: Patrick Gardella To: "David E. Cross" Subject: RE: jdk1.1.5 and ICQ Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Welcome to the club! Have you been able to connect with any other ICQ for FreeBSD? The Java version is full of nice little features like this. It happens on many peoples systems, not just FreeBSD. Other network "chat" programs work fine, like AOL's AIM. We're working on it... Patrick On 19-Mar-98 David E. Cross wrote: > I am having trouble connecting to the ICQW network with JDK 1.1.5, it does > not seem to ever send any packets out. (this is with TCPDUMP on the same > host.) > > Any known problems with this, or additionaly information I could provide? > > -- > David Cross > UNIX Systems Administrator > GE Corporate R&D > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 11:26:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20236 for freebsd-java-outgoing; Thu, 19 Mar 1998 11:26:26 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from phoenix.its.rpi.edu (dec@phoenix.its.rpi.edu [128.113.161.45]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20229 for ; Thu, 19 Mar 1998 11:26:24 -0800 (PST) (envelope-from dec@phoenix.its.rpi.edu) Received: from localhost (dec@localhost) by phoenix.its.rpi.edu (8.8.8/8.8.7) with SMTP id OAA21647; Thu, 19 Mar 1998 14:26:08 -0500 (EST) (envelope-from dec@phoenix.its.rpi.edu) Date: Thu, 19 Mar 1998 14:26:08 -0500 (EST) From: "David E. Cross" To: Patrick Gardella cc: freebsd-java@FreeBSD.ORG Subject: RE: jdk1.1.5 and ICQ In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Mar 1998, Patrick Gardella wrote: > Welcome to the club! Have you been able to connect with any other ICQ for > FreeBSD? The Java version is full of nice little features like this. It > happens on many peoples systems, not just FreeBSD. > > Other network "chat" programs work fine, like AOL's AIM. > > We're working on it... > > Patrick hmm... ok... I guess I am stuck using Solaris.. bleagh. One other problem that I forgot to mention... java_x does not exit when an aplication ends, I need to ControlC it or kill it from another window. Is this another known issue? -- David Cross UNIX Systems Administrator GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 11:31:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20807 for freebsd-java-outgoing; Thu, 19 Mar 1998 11:31:46 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from iglou.com (exim@iglou2.iglou.com [192.107.41.17]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id LAA20786 for ; Thu, 19 Mar 1998 11:31:40 -0800 (PST) (envelope-from patrick@cre8tivegroup.com) Received: from gateway.cre8tivegroup.com [204.255.227.82] by iglou.com with esmtp (8.7.3/8.6.12) id 0yFl2H-0007jP-00; Thu, 19 Mar 1998 14:31:30 -0500 Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Thu, 19 Mar 1998 14:31:42 -0500 (EST) Organization: The Creative Group From: Patrick Gardella To: "David E. Cross" Subject: RE: jdk1.1.5 and ICQ Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What JDK are you running? Mine exits. Is this only when you use ICQ? Patrick On 19-Mar-98 David E. Cross wrote: > On Thu, 19 Mar 1998, Patrick Gardella wrote: > >> Welcome to the club! Have you been able to connect with any other ICQ for >> FreeBSD? The Java version is full of nice little features like this. It >> happens on many peoples systems, not just FreeBSD. >> >> Other network "chat" programs work fine, like AOL's AIM. >> >> We're working on it... >> >> Patrick > hmm... ok... I guess I am stuck using Solaris.. bleagh. > > One other problem that I forgot to mention... java_x does not exit when an > aplication ends, I need to ControlC it or kill it from another window. Is > this another known issue? > > -- > David Cross > UNIX Systems Administrator > GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 12:42:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04789 for freebsd-java-outgoing; Thu, 19 Mar 1998 12:42:31 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from phoenix.its.rpi.edu (dec@phoenix.its.rpi.edu [128.113.161.45]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04759 for ; Thu, 19 Mar 1998 12:42:22 -0800 (PST) (envelope-from dec@phoenix.its.rpi.edu) Received: from localhost (dec@localhost) by phoenix.its.rpi.edu (8.8.8/8.8.7) with SMTP id PAA22649; Thu, 19 Mar 1998 15:42:15 -0500 (EST) (envelope-from dec@phoenix.its.rpi.edu) Date: Thu, 19 Mar 1998 15:42:15 -0500 (EST) From: "David E. Cross" To: Patrick Gardella cc: freebsd-java@FreeBSD.ORG Subject: RE: jdk1.1.5 and ICQ In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Mar 1998, Patrick Gardella wrote: > What JDK are you running? Mine exits. Is this only when you use ICQ? > > Patrick Hmm... I remember this being a problem with more java applications/applets yesterday, but ICQ seems to be the only one today, go figure. -- David Cross UNIX Systems Administrator GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 19 23:58:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA16125 for freebsd-java-outgoing; Thu, 19 Mar 1998 23:58:19 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA16119 for ; Thu, 19 Mar 1998 23:58:17 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id XAA04413 for ; Thu, 19 Mar 1998 23:58:15 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803200758.XAA04413@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-java@FreeBSD.ORG Subject: BDKMar98 Install fails Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Mar 1998 23:58:14 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org (gdb) bt #0 0x2009b863 in sigsuspend () #1 0x200963f5 in sigpause () #2 0x2008cefd in pause () #3 0x2004c075 in idle_thread (tid=0x20409cc0) at ../../../../src/freebsd/java/runtime/async_gc.c:56 #4 0x2005a490 in start_func (dummy=1, arg=541105344, func=0x2004c030 ) at ../../../../src/freebsd/java/green_threads/src/threads_md.c:225 --- It seems to get stuck waiting to free a stack. The latest beandk can be found at: http://www.javasoft.com/beans/software/bdk_download.html Tnks, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 02:52:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05519 for freebsd-java-outgoing; Fri, 20 Mar 1998 02:52:18 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from zed.ludd.luth.se (zed.ludd.luth.se [130.240.16.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05507 for ; Fri, 20 Mar 1998 02:52:15 -0800 (PST) (envelope-from gozer@ludd.luth.se) Received: from sister.ludd.luth.se (gozer@sister.ludd.luth.se [130.240.16.77]) by zed.ludd.luth.se (8.8.5/8.8.5) with SMTP id LAA09274; Fri, 20 Mar 1998 11:52:06 +0100 Date: Fri, 20 Mar 1998 11:52:04 +0100 (MET) From: Johan Larsson To: "David E. Cross" cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ In-Reply-To: Message-ID: X-uri: http://www.ludd.luth.se/users/gozer/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Mar 1998, David E. Cross wrote: > I am having trouble connecting to the ICQW network with JDK 1.1.5, it does > not seem to ever send any packets out. (this is with TCPDUMP on the same > host.) I get much faster connected to the icq-network (with icqjava.0981a and jdk1.1.5.V98-2-25.tar.gz) if i give ONE ip instead of using icq.mirabilis.com for the connection. Maybe it is a problem getting multiple ip's for one host? Because that is also what tcpdump seems to show, asking over and over again and getting several answers. This is what tcpdump says about connecting: 11:47:38.811167 ball.campus.luth.se.3366 > 204.91.242.35.4000: udp 49 11:47:38.936710 204.91.242.35.4000 > ball.campus.luth.se.3366: udp 6 Btw, if you use jdk1.1.2-fbsd1.tgz.good you will see that icq works like a charm. So it is SOMETHING that has happened to jdk1.1.{3,4,5}. And as you also say, icq with jdk1.1.5 will not exit correctly, the only way is to do a ^C. jdk1.1.2-fbsd1.tgz.good on the other hand, exits very nicely (I am using motif in both cases). > > Any known problems with this, or additionaly information I could provide? > > -- > David Cross > UNIX Systems Administrator > GE Corporate R&D > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > > Johan -- * mailto:gozer@ludd.luth.se * http://www.ludd.luth.se/users/gozer/ * * Powered by FreeBSD. http://www.se.freebsd.org/ +-+-+-+-+-+-+-+-+ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 05:39:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24727 for freebsd-java-outgoing; Fri, 20 Mar 1998 05:39:06 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from phoenix.its.rpi.edu (dec@phoenix.its.rpi.edu [128.113.161.45]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA24719 for ; Fri, 20 Mar 1998 05:39:04 -0800 (PST) (envelope-from dec@phoenix.its.rpi.edu) Received: from localhost (dec@localhost) by phoenix.its.rpi.edu (8.8.8/8.8.7) with SMTP id IAA06765; Fri, 20 Mar 1998 08:39:00 -0500 (EST) (envelope-from dec@phoenix.its.rpi.edu) Date: Fri, 20 Mar 1998 08:39:00 -0500 (EST) From: "David E. Cross" To: Johan Larsson cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Mar 1998, Johan Larsson wrote: > I get much faster connected to the icq-network (with icqjava.0981a and > jdk1.1.5.V98-2-25.tar.gz) if i give ONE ip instead of using > icq.mirabilis.com for the connection. Maybe it is a problem getting > multiple ip's for one host? Because that is also what tcpdump seems to > show, asking over and over again and getting several answers. > > This is what tcpdump says about connecting: > 11:47:38.811167 ball.campus.luth.se.3366 > 204.91.242.35.4000: udp 49 > 11:47:38.936710 204.91.242.35.4000 > ball.campus.luth.se.3366: udp 6 Ahh... that is why I didn't see anything them... I have local nameservice... it would have asked the network once, then cached the results.. I will give it a try now... > > Btw, if you use jdk1.1.2-fbsd1.tgz.good you will see that icq works like a > charm. So it is SOMETHING that has happened to jdk1.1.{3,4,5}. This also makes sense, and it is not just FreeBSD.. I went to Mirabilis's web page and noted that Linux users can also not reliably connect with 1.1.5 > > And as you also say, icq with jdk1.1.5 will not exit correctly, the only > way is to do a ^C. jdk1.1.2-fbsd1.tgz.good on the other hand, exits very > nicely (I am using motif in both cases).> What ever happened to 'write once, run anywhere' ;) -- David Cross UNIX Systems Administrator GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 06:12:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA00929 for freebsd-java-outgoing; Fri, 20 Mar 1998 06:12:21 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from cesit1.unifi.it (cesit1.unifi.it [150.217.1.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA00864 for ; Fri, 20 Mar 1998 06:11:49 -0800 (PST) (envelope-from ugo@dsi.UNIFI.IT) Received: from aguirre.dsi.unifi.it by CESIT1.UNIFI.IT (PMDF V5.1-10 #23168) with SMTP id <01IUW6OBM5JO00012C@CESIT1.UNIFI.IT> for freebsd-java@FreeBSD.ORG; Fri, 20 Mar 1998 15:10:11 MET Received: from dsi.unifi.it (com2.unifi.it) by aguirre.dsi.unifi.it (4.1/SMI-4.1) id AA29412; Fri, 20 Mar 1998 15:02:45 +0100 Received: from pegasus.home.net (pegasus.home.net [192.168.1.3]) by dsi.unifi.it (8.8.8/8.8.8) with ESMTP id OAA00311; Fri, 20 Mar 1998 14:44:15 +0100 (MET envelope-from ugo) Received: (from ugo@localhost) by pegasus.home.net (8.8.8/8.8.7) id OAA06948; Fri, 20 Mar 1998 14:44:15 +0100 (MET) Date: Fri, 20 Mar 1998 14:44:14 +0100 (MET) From: Ugo Paternostro Subject: RE: jdk1.1.5 and ICQ In-reply-to: To: "David E. Cross" Cc: freebsd-java@FreeBSD.ORG Message-id: Organization: Not an organization MIME-version: 1.0 X-Mailer: XFMail 1.2 [p0] on FreeBSD Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 8bit X-Priority: 3 (Normal) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 19-Mar-98 David E. Cross wrote about "jdk1.1.5 and ICQ": > I am having trouble connecting to the ICQW network with JDK 1.1.5, it does > not seem to ever send any packets out. (this is with TCPDUMP on the same > host.) Just my 0.02$: yes, me too. I'm using jdk 1.1.5 980225 on a -stable installation. BTW, I installed both jdk 1.1 and 1.1.5 and switch between them changing a link. Using 1.1 I am able to connect to the ICQ server and to search users, but using 1.1.5 I cannot. Unluckly, if you use jdk 1.1 ICQ will soon crash with a lot of AWT errors. Chatting with other ICQ users works perfectly with 1.1.5: it just seems to have problem talking to the server (that's not completely true, because you must "logon" somehow and receive the list of currently logged on users...) BTW, me too, I have to signal java_X to make it exit. I would be glad to provide as much information as I can, if you (developers on the mailing list) need it. P.S.: try my port for ICQJava 0.981a. I sent a PR, but it has not been commited yet. > David Cross Bye, UP To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 07:53:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11885 for freebsd-java-outgoing; Fri, 20 Mar 1998 07:53:13 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id HAA11879 for ; Fri, 20 Mar 1998 07:53:12 -0800 (PST) (envelope-from Mailer-Daemon@East.Sun.COM) Received: from East.Sun.COM ([129.148.1.241]) by mercury.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id HAA01401; Fri, 20 Mar 1998 07:52:42 -0800 Received: from suneast.East.Sun.COM by East.Sun.COM (SMI-8.6/SMI-5.3) id KAA03713; Fri, 20 Mar 1998 10:52:40 -0500 Received: from compound.east.sun.com by suneast.East.Sun.COM (SMI-8.6/SMI-SVR4) id KAA00663; Fri, 20 Mar 1998 10:52:37 -0500 Received: (from alk@localhost) by compound.east.sun.com (8.8.8/8.7.3) id JAA04731; Fri, 20 Mar 1998 09:52:46 -0600 (CST) Date: Fri, 20 Mar 1998 09:52:46 -0600 (CST) Message-Id: <199803201552.JAA04731@compound.east.sun.com> From: Tony Kimball MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: alk@pobox.com To: dec@phoenix.its.rpi.edu Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ References: X-Mailer: VM 6.34 under 20.3 "Vatican City" XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoth David E. Cross on Fri, 20 March: : : What ever happened to 'write once, run anywhere' ;) : Remember, JDK on BSD is not (yet) certified -- therefore it is not Java (tm). It doesn't pass the Java conformance tests. If you want to run anywhere, you have to limit 'anywhere' to Java-compatible environments. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 09:28:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06235 for freebsd-java-outgoing; Fri, 20 Mar 1998 09:28:12 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from zed.ludd.luth.se (zed.ludd.luth.se [130.240.16.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06182 for ; Fri, 20 Mar 1998 09:28:07 -0800 (PST) (envelope-from gozer@ludd.luth.se) Received: from father.ludd.luth.se (gozer@father.ludd.luth.se [130.240.16.18]) by zed.ludd.luth.se (8.8.5/8.8.5) with SMTP id SAA24524; Fri, 20 Mar 1998 18:27:56 +0100 Date: Fri, 20 Mar 1998 18:27:54 +0100 (MET) From: Johan Larsson To: "David E. Cross" cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ In-Reply-To: Message-ID: X-uri: http://www.ludd.luth.se/users/gozer/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Mar 1998, David E. Cross wrote: > > Btw, if you use jdk1.1.2-fbsd1.tgz.good you will see that icq works like a > > charm. So it is SOMETHING that has happened to jdk1.1.{3,4,5}. > This also makes sense, and it is not just FreeBSD.. I went to Mirabilis's > web page and noted that Linux users can also not reliably connect with > 1.1.5 But what happened between jdk1.1.2 and jdk1.1.5, probably have we stolen some fix from linuxjdk or they have stolen something from us that gives this bug. Because the solaris jdk1.1.5 works like a charm. > > And as you also say, icq with jdk1.1.5 will not exit correctly, the only > > way is to do a ^C. jdk1.1.2-fbsd1.tgz.good on the other hand, exits very > > nicely (I am using motif in both cases).> > > What ever happened to 'write once, run anywhere' ;) Well, if sun would have given more support to the people porting jdk's to different platforms, this wouldn't have been the case. And with support i mean organizing bugfixes and structuring the ongoing development of jdk. (Just my small opinion on the matter :-) Johan -- * mailto:gozer@ludd.luth.se * http://www.ludd.luth.se/users/gozer/ * * Powered by FreeBSD. http://www.se.freebsd.org/ +-+-+-+-+-+-+-+-+ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 10:01:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13756 for freebsd-java-outgoing; Fri, 20 Mar 1998 10:01:46 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13736 for ; Fri, 20 Mar 1998 10:01:42 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id KAA07299; Fri, 20 Mar 1998 10:01:20 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803201801.KAA07299@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: alk@pobox.com cc: dec@phoenix.its.rpi.edu, freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ In-reply-to: Your message of "Fri, 20 Mar 1998 09:52:46 CST." <199803201552.JAA04731@compound.east.sun.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Mar 1998 10:01:19 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a list of outstanding bugs caused by the conformance test? Cheers, Amancio > Quoth David E. Cross on Fri, 20 March: > : > : What ever happened to 'write once, run anywhere' ;) > : > > Remember, JDK on BSD is not (yet) certified -- therefore it is not > Java (tm). It doesn't pass the Java conformance tests. If you want > to run anywhere, you have to limit 'anywhere' to Java-compatible > environments. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 20 11:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01271 for freebsd-java-outgoing; Fri, 20 Mar 1998 11:10:09 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from phoenix.its.rpi.edu (dec@phoenix.its.rpi.edu [128.113.161.45]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01259 for ; Fri, 20 Mar 1998 11:10:05 -0800 (PST) (envelope-from dec@phoenix.its.rpi.edu) Received: from localhost (dec@localhost) by phoenix.its.rpi.edu (8.8.8/8.8.7) with SMTP id OAA10974; Fri, 20 Mar 1998 14:09:34 -0500 (EST) (envelope-from dec@phoenix.its.rpi.edu) Date: Fri, 20 Mar 1998 14:09:34 -0500 (EST) From: "David E. Cross" To: Amancio Hasty cc: alk@pobox.com, freebsd-java@FreeBSD.ORG Subject: Re: jdk1.1.5 and ICQ In-Reply-To: <199803201801.KAA07299@rah.star-gate.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Where can one get a JDK prior to JDK 1.1.5? -- David Cross UNIX Systems Administrator GE Corporate R&D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 21 04:04:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA01382 for freebsd-java-outgoing; Sat, 21 Mar 1998 04:04:33 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from zed.ludd.luth.se (zed.ludd.luth.se [130.240.16.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA01367 for ; Sat, 21 Mar 1998 04:04:28 -0800 (PST) (envelope-from gozer@ludd.luth.se) Received: from sister.ludd.luth.se (gozer@sister.ludd.luth.se [130.240.16.77]) by zed.ludd.luth.se (8.8.5/8.8.5) with SMTP id NAA23818; Sat, 21 Mar 1998 13:04:13 +0100 Date: Sat, 21 Mar 1998 13:04:12 +0100 (MET) From: Johan Larsson To: Ugo Paternostro cc: "David E. Cross" , freebsd-java@FreeBSD.ORG Subject: RE: jdk1.1.5 and ICQ In-Reply-To: Message-ID: X-uri: http://www.ludd.luth.se/users/gozer/ MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Mar 1998, Ugo Paternostro wrote: > P.S.: try my port for ICQJava 0.981a. I sent a PR, but it has not been commited > yet. And it probably want due to licensing terms. >From LICENSE.TXT: "You may not use this software on more than one computer or distribute this version of the software to any other third party." Johan -- * mailto:gozer@ludd.luth.se * http://www.ludd.luth.se/users/gozer/ * * Powered by FreeBSD. http://www.se.freebsd.org/ +-+-+-+-+-+-+-+-+ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 21 10:51:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA07373 for freebsd-java-outgoing; Sat, 21 Mar 1998 10:51:57 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA07368 for ; Sat, 21 Mar 1998 10:51:54 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Received: from rah (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id KAA16109 for ; Sat, 21 Mar 1998 10:51:47 -0800 (PST) (envelope-from hasty@rah.star-gate.com) Message-Id: <199803211851.KAA16109@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-java@FreeBSD.ORG Subject: http://sunsite.auc.dk/jde/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Mar 1998 10:51:47 -0800 From: Amancio Hasty Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Looking around , I found JDE , Java Developement Environment , for emacs. Have fun, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Mar 21 22:54:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17205 for freebsd-java-outgoing; Sat, 21 Mar 1998 22:54:35 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from northwest.com (root@port06.northwest.com [204.119.42.18]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA17196 for ; Sat, 21 Mar 1998 22:54:32 -0800 (PST) (envelope-from stevemw@northwest.com) Received: from fuji (stevemw@localhost [127.0.0.1]) by northwest.com (8.8.8/8.8.7) with ESMTP id WAA01088; Sat, 21 Mar 1998 22:53:28 -0800 (PST) (envelope-from stevemw@fuji) Message-Id: <199803220653.WAA01088@northwest.com> To: pnuts@etale.com cc: freebsd-java@FreeBSD.ORG Subject: Problem Report for Pnuts on FreeBSD/1.1.5 Date: Sat, 21 Mar 1998 22:53:27 -0800 From: Stephen Wynne Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm attempting to run the Pnuts language on FreeBSD Java and I'm running into some problems. For interested FreeBSD people, you can find more information about Pnuts here: http://www.etale.com/pnuts/ Thanks, Steve ./pnutool java.lang.RuntimeException : function require {1} is not defined java.lang.RuntimeException : function require {1} is not defined java.lang.RuntimeException : function require {1} is not defined java.lang.RuntimeException : function layout {2} is not defined To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message