From owner-freebsd-java Mon Jun 8 20:49:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17847 for freebsd-java-outgoing; Mon, 8 Jun 1998 20:49:11 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from vee.net (challenger.vee.net [192.83.231.99]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17815 for ; Mon, 8 Jun 1998 20:48:58 -0700 (PDT) (envelope-from mike@vee.net) Received: from challenger.vee.net (challenger.vee.net [192.83.231.99]) by vee.net (8.8.8/8.8.8) with ESMTP id NAA23708 for ; Tue, 9 Jun 1998 13:26:45 +0930 (CST) (envelope-from mike@vee.net) 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 X-VNetVersion: VNet 1.2 Date: Tue, 09 Jun 1998 13:26:45 +0930 (CST) Organization: VNet From: Michael Gratton To: freebsd-java@FreeBSD.ORG Subject: "Can't find class" errors Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi there, Can someone tell me what the default classpath is when executing java/bin/java? More specifically, is the current directory (./ or whatever) in the default classpath? I'm getting "Can't find class" errors even though the specified class is in the current directory: challenger> ls Beanbag.class challenger> java Beanbag Can't find class Beanbag challenger> Thanks, Mike. * Mike Gratton - mike@vee.net ! "I'd rather be anywhere doing anything" $ http://www.vee.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 9 05:50:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA11437 for freebsd-java-outgoing; Tue, 9 Jun 1998 05:50:53 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from cyclone.degnet.baynet.de (cyclone.degnet.baynet.de [194.95.214.129]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA11345 for ; Tue, 9 Jun 1998 05:50:34 -0700 (PDT) (envelope-from malte@webmore.com) Received: from neuron.webmore.com (unverified [194.95.214.179]) by cyclone.degnet.baynet.de (EMWAC SMTPRS 0.83) with SMTP id ; Tue, 09 Jun 1998 14:50:33 +0200 Received: from neuron.webmore.de (malte@webmore.com) by neuron.webmore.com (8.8.8/8.8.8) with ESMTP id OAA00677; Tue, 9 Jun 1998 14:45:38 +0200 (CEST) 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: Tue, 09 Jun 1998 14:45:38 +0200 (CEST) Reply-To: malte@webmore.com From: Malte Lance To: Michael Gratton Subject: RE: "Can't find class" errors Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >From /usr/local/jdk1.1.5/bin/java NO_DOT_LIST="appletviewer" DEFAULT_CLASSPATH="." for excluded in ${NO_DOT_LIST}; do if [ ${excluded} = ${progname} ]; then DEFAULT_CLASSPATH=""; fi done CLASSPATH="${CLASSPATH:-${DEFAULT_CLASSPATH}}" if [ -z "${CLASSPATH}" ] ; then CLASSPATH="$JAVA_HOME/classes:$JAVA_HOME/lib/classes.jar:$JAVA_HOME/lib/rt.j ar:$JAVA_HOME/lib/i18n.jar:$JAVA_HOME/lib/classes.zip" else CLASSPATH="$CLASSPATH:$JAVA_HOME/classes:$JAVA_HOME/lib/classes.jar:$JAVA_HO ME/lib/rt.jar:$JAVA_HOME/lib/i18n.jar:$JAVA_HOME/lib/classes.zip" fi This means, if you are calling appletviewer, "." is NOT in your CLASSPATH. Otherwise it will be if you set CLASSPATH in your environment to include it. Malte. On 09-Jun-98 Michael Gratton wrote: > > Hi there, > > Can someone tell me what the default classpath is when executing > java/bin/java? > More specifically, is the current directory (./ or whatever) in the default > classpath? > > I'm getting "Can't find class" errors even though the specified class is in > the > current directory: > > challenger> ls > Beanbag.class > challenger> java Beanbag > Can't find class Beanbag > challenger> > > Thanks, > Mike. > > * Mike Gratton - mike@vee.net > ! "I'd rather be anywhere doing anything" > $ http://www.vee.net/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message ---------------------------------- E-Mail: Malte Lance Date: 09-Jun-98 Time: 14:22:44 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 9 07:35:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06040 for freebsd-java-outgoing; Tue, 9 Jun 1998 07:35:16 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06013 for ; Tue, 9 Jun 1998 07:35:07 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by hub.org (8.8.8/8.7.5) with SMTP id KAA28314 for ; Tue, 9 Jun 1998 10:35:04 -0400 (EDT) Date: Tue, 9 Jun 1998 10:35:03 -0400 (EDT) From: The Hermit Hacker To: freebsd-java@FreeBSD.ORG Subject: Java v1.1.6 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 Hi... I'm curious as to whether there is anyone working on v1.1.6 yet, and/or if there is any progress being made? Right now, my only desire is to get ICQ running under FreeBSD, and my experience with Solaris x86 was that it didn't work properly until you got v1.1.6 installed...previous version started up, but connecting to the servers barely worked, if ever... Thanks... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 9 08:48:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23375 for freebsd-java-outgoing; Tue, 9 Jun 1998 08:48:43 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from iglou.com (sendmail@iglou2.iglou.com [192.107.41.17]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA23276 for ; Tue, 9 Jun 1998 08:48:15 -0700 (PDT) (envelope-from patrick@cre8tivegroup.com) Received: from gateway.cre8tivegroup.com [204.255.227.105] by iglou.com with esmtp (8.7.3/8.6.12) id 0yjQcv-0004JV-00; Tue, 9 Jun 1998 11:47:57 -0400 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: Tue, 09 Jun 1998 11:44:15 -0400 (EDT) Organization: The Creative Group From: Patrick Gardella To: The Hermit Hacker Subject: RE: Java v1.1.6 Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Yes, a port of 1.1.6 is in the works. It is running in a developer port, but 1.1.6 introduced some new "features" (aka bugs) which they are working on. Its a busy time of the year for the developers, so it may be a few days before the port is released to the general public. Patrick On 09-Jun-98 The Hermit Hacker wrote: > > Hi... > > I'm curious as to whether there is anyone working on v1.1.6 yet, > and/or if there is any progress being made? > > Right now, my only desire is to get ICQ running under FreeBSD, > and my experience with Solaris x86 was that it didn't work properly > until you got v1.1.6 installed...previous version started up, but > connecting to the servers barely worked, if ever... > > Thanks... > > > 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 Jun 9 08:54:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24806 for freebsd-java-outgoing; Tue, 9 Jun 1998 08:54:25 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA24695 for ; Tue, 9 Jun 1998 08:54:01 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by hub.org (8.8.8/8.7.5) with SMTP id LAA14011; Tue, 9 Jun 1998 11:53:54 -0400 (EDT) Date: Tue, 9 Jun 1998 11:53:54 -0400 (EDT) From: The Hermit Hacker To: Patrick Gardella cc: freebsd-java@FreeBSD.ORG Subject: RE: Java v1.1.6 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 Tue, 9 Jun 1998, Patrick Gardella wrote: > Hi, > > Yes, a port of 1.1.6 is in the works. It is running in a developer > port, but 1.1.6 introduced some new "features" (aka bugs) which they > are working on. Its a busy time of the year for the developers, so it > may be a few days before the port is released to the general public. Morning Patrick... Thank's for the notice. I just joined this list, so apologize if this was already known. ICQ isn't a mission-critical app, so a few days is great. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 9 14:04:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04781 for freebsd-java-outgoing; Tue, 9 Jun 1998 14:04:27 -0700 (PDT) (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 OAA04715 for ; Tue, 9 Jun 1998 14:04:12 -0700 (PDT) (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 PAA19885; Tue, 9 Jun 1998 15:04:06 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id PAA03457; Tue, 9 Jun 1998 15:04:04 -0600 Date: Tue, 9 Jun 1998 15:04:04 -0600 Message-Id: <199806092104.PAA03457@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: The Hermit Hacker Cc: freebsd-java@FreeBSD.ORG Subject: Re: Java v1.1.6 In-Reply-To: References: X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm curious as to whether there is anyone working on v1.1.6 yet, > and/or if there is any progress being made? I have one compiled up, but Keith White wanted to make some Timezone changes that I wanted to have in the release. He made those this morning, so when I get back from my business trip (I'm on one now), I'll test it out and make a public release. Hopefully before the end of the month. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 9 16:48:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA04230 for freebsd-java-outgoing; Tue, 9 Jun 1998 16:48:10 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from vee.net (challenger.vee.net [192.83.231.99]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA04224 for ; Tue, 9 Jun 1998 16:48:06 -0700 (PDT) (envelope-from mike@vee.net) Received: from challenger.vee.net (challenger.vee.net [192.83.231.99]) by vee.net (8.8.8/8.8.8) with ESMTP id JAA24993; Wed, 10 Jun 1998 09:25:44 +0930 (CST) (envelope-from mike@vee.net) 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: X-VNetVersion: VNet 1.2 Date: Wed, 10 Jun 1998 09:25:43 +0930 (CST) Organization: VNet From: Michael Gratton To: Malte Lance Subject: RE: "Can't find class" errors Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 09-Jun-98 Malte Lance wrote: >From /usr/local/jdk1.1.5/bin/java > > [snip] > > This means, if you are calling appletviewer, "." is NOT in your CLASSPATH. > Otherwise it will be if you set CLASSPATH in your environment to include it. Yep, that's fine, but I'm referring to java, not appletviewer. I don't have the source on me here, so can someone have a look and tel me what the default classpath used bin/java? Thanks, Mike. * Mike Gratton - mike@vee.net ! "I'd rather be anywhere doing anything" $ http://www.vee.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 10 02:58:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15630 for freebsd-java-outgoing; Wed, 10 Jun 1998 02:58:48 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from cyclone.degnet.baynet.de (www.degnet.baynet.de [194.95.214.129]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id CAA15603 for ; Wed, 10 Jun 1998 02:58:43 -0700 (PDT) (envelope-from malte@webmore.com) Received: from neuron.webmore.com (unverified [194.95.214.174]) by cyclone.degnet.baynet.de (EMWAC SMTPRS 0.83) with SMTP id ; Wed, 10 Jun 1998 11:59:49 +0200 Received: from neuron.webmore.de (malte@webmore.com) by neuron.webmore.com (8.8.8/8.8.8) with ESMTP id LAA00822; Wed, 10 Jun 1998 11:54:48 +0200 (CEST) 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: Wed, 10 Jun 1998 11:54:48 +0200 (CEST) Reply-To: malte@webmore.com From: Malte Lance To: Michael Gratton Subject: RE: "Can't find class" errors Cc: freebsd-java@FreeBSD.ORG Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 09-Jun-98 Michael Gratton wrote: > > On 09-Jun-98 Malte Lance wrote: >>From /usr/local/jdk1.1.5/bin/java >> >> [snip] >> >> This means, if you are calling appletviewer, "." is NOT in your CLASSPATH. >> Otherwise it will be if you set CLASSPATH in your environment to include it. > > Yep, that's fine, but I'm referring to java, not appletviewer. I don't have > the > source on me here, so can someone have a look and tel me what the default > classpath used bin/java? /usr/local/jdk1.1.5/bin/java is the wrapper for the java-bin. View it on your own: DEFAULT_CLASSPATH="." .. CLASSPATH="${CLASSPATH:-${DEFAULT_CLASSPATH}}" if [ -z "${CLASSPATH}" ] ; then CLASSPATH="$JAVA_HOME/classes:$JAVA_HOME/lib/classes.jar:$JAVA_HOME/lib/rt.j ar:$JAVA_HOME/lib/i18n.jar:$JAVA_HOME/lib/classes.zip" else CLASSPATH="$CLASSPATH:$JAVA_HOME/classes:$JAVA_HOME/lib/classes.jar:$JAVA_HO ME/lib/rt.jar:$JAVA_HOME/lib/i18n.jar:$JAVA_HOME/lib/classes.zip" fi That means, if you did not set CLASSPATH at all in your environment, "." will be in your CLASSPATH, as long as you do not call the applet with appletviewer (=> call your applet with "java" and "." will be in your CLASSPATH if your CLASSPATH is not set in your environment). If you set CLASSPATH to something in your environment, it depends on you, whether you included "." in your CLASSPATH or not. In any case $JAVA_HOME/classes:$JAVA_HOME/lib/classes.jar: $JAVA_HOME/lib/rt.jar:$JAVA_HOME/lib/i18n.jar: $JAVA_HOME/lib/classes.zip will be appended to your CLASSPATH. JAVA_HOME defaults to the install-directory of your jdk-1.1.5 Malte > > Thanks, > Mike. > > * Mike Gratton - mike@vee.net > ! "I'd rather be anywhere doing anything" > $ http://www.vee.net/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message ---------------------------------- E-Mail: Malte Lance Date: 10-Jun-98 Time: 10:37:07 ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 10 22:47:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA26102 for freebsd-java-outgoing; Wed, 10 Jun 1998 22:47:01 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet11.ozemail.com.au (oznet11.ozemail.com.au [203.2.192.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA26093 for ; Wed, 10 Jun 1998 22:46:54 -0700 (PDT) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet11.ozemail.com.au (8.8.4/8.6.12) with ESMTP id PAA11375 for ; Thu, 11 Jun 1998 15:46:49 +1000 (EST) Message-ID: <357F6F06.E45FC361@horizonti.com> Date: Thu, 11 Jun 1998 15:45:42 +1000 From: Joe X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: FreeBSD/Linux comm driver Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Just wondering if anyone has successfully used the Java Communications API under FreeBSD? The Java classes I assume are fine, but the native driver I wasn't sure about... would Sun release source code for the Solaris version so a FreeBSD port could be made? I'd be happy to do implement the code changes required unless there is already a port out there... if someone could give me some advice on where to approach Sun and if they'll actually release this source. Any and all alternatives would be greatly appreciated. Cheers. -- Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 11 07:48:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA00389 for freebsd-java-outgoing; Thu, 11 Jun 1998 07:48:54 -0700 (PDT) (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 HAA00380 for ; Thu, 11 Jun 1998 07:48:52 -0700 (PDT) (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 IAA22683; Thu, 11 Jun 1998 08:48:44 -0600 (MDT) Message-ID: <357FEE4B.A97D98AC@plutotech.com> Date: Thu, 11 Jun 1998 08:48:43 -0600 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 CC: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD/Linux comm driver References: <357F6F06.E45FC361@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 > Just wondering if anyone has successfully used the Java Communications > API under FreeBSD? Not yet. I'm working on a commercial port of the Comm API for FreeBSD through a company called Solutions Consulting, http://www.sc-systems.com/ If someone can get ahold of the Solaris native layer and port it, or otherwise implement a free port, that'd be nice. --k To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 11 15:56:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22698 for freebsd-java-outgoing; Thu, 11 Jun 1998 15:56:58 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet11.ozemail.com.au (oznet11.ozemail.com.au [203.2.192.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22691 for ; Thu, 11 Jun 1998 15:56:52 -0700 (PDT) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet11.ozemail.com.au (8.8.4/8.6.12) with ESMTP id IAA18000; Fri, 12 Jun 1998 08:56:28 +1000 (EST) Message-ID: <3580604C.C4624E1F@horizonti.com> Date: Fri, 12 Jun 1998 08:55:08 +1000 From: Joe X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: Sean Kelly CC: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD/Linux comm driver References: <357F6F06.E45FC361@horizonti.com> <357FEE4B.A97D98AC@plutotech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sean Kelly wrote: > > > Just wondering if anyone has successfully used the Java Communications > > API under FreeBSD? > > Not yet. I'm working on a commercial port of the Comm API for FreeBSD > through a company called Solutions Consulting, > http://www.sc-systems.com/ > > If someone can get ahold of the Solaris native layer and port it, or > otherwise implement a free port, that'd be nice. > > --k I've contacted Sun regarding this and will hopefully receive a response... I'll post any updates here. -- Joe Shevland Horizon Technologies International Team Leader Development, Architecture & Consulting Email: Joe.Shevland@Horizonti.com Phone: +61-03-62319335 Fax: +61-03-62319334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 11 17:03:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA07397 for freebsd-java-outgoing; Thu, 11 Jun 1998 17:03:31 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet11.ozemail.com.au (oznet11.ozemail.com.au [203.2.192.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA07324 for ; Thu, 11 Jun 1998 17:03:19 -0700 (PDT) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet11.ozemail.com.au (8.8.4/8.6.12) with ESMTP id KAA03629 for ; Fri, 12 Jun 1998 10:03:15 +1000 (EST) Message-ID: <35806FF2.7B04A7A0@horizonti.com> Date: Fri, 12 Jun 1998 10:01:54 +1000 From: Joe X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: JDK 1.1.6 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How come JDK 1.1.6 isn't on the FreeBSD Java page? Is it still in beta? -- Joe Shevland Horizon Technologies International Team Leader Development, Architecture & Consulting Email: Joe.Shevland@Horizonti.com Phone: +61-03-62319335 Fax: +61-03-62319334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 11 17:37:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA13883 for freebsd-java-outgoing; Thu, 11 Jun 1998 17:37:49 -0700 (PDT) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: from oznet11.ozemail.com.au (oznet11.ozemail.com.au [203.2.192.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA13866 for ; Thu, 11 Jun 1998 17:37:42 -0700 (PDT) (envelope-from joe.shevland@horizonti.com) Received: from horizonti.com ([203.33.128.245]) by oznet11.ozemail.com.au (8.8.4/8.6.12) with ESMTP id KAA12230 for ; Fri, 12 Jun 1998 10:37:36 +1000 (EST) Message-ID: <358077FE.C03CE91B@horizonti.com> Date: Fri, 12 Jun 1998 10:36:14 +1000 From: Joe X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Linux CommAPI Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Sun engineers haven't made a decision on whether to release source for their Win32 and Solaris comm drivers, however they pointed me at: http://www.interstice.com/~kevinh/linuxcomm.html Has anyone had a look at/tried to build this? Any caveats? -- Joe Shevland Horizon Technologies International Team Leader Development, Architecture & Consulting Email: Joe.Shevland@Horizonti.com Phone: +61-03-62319335 Fax: +61-03-62319334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 12 08:00:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA25743 for freebsd-java-outgoing; Fri, 12 Jun 1998 08:00:01 -0700 (PDT) (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 HAA25721 for ; Fri, 12 Jun 1998 07:59:53 -0700 (PDT) (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 IAA28163; Fri, 12 Jun 1998 08:59:41 -0600 (MDT) Message-ID: <3581425C.82EB9F8@plutotech.com> Date: Fri, 12 Jun 1998 08:59:40 -0600 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 CC: freebsd-java@FreeBSD.ORG Subject: Re: Linux CommAPI References: <358077FE.C03CE91B@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 Joe wrote: > http://www.interstice.com/~kevinh/linuxcomm.html > Has anoyne had a look at/tried to build this? I haven't. But I love this line from the web page: ``It allows you to use Linux serial ... ports in an OS independent manner.'' :-) --k To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 12 08:55:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05711 for freebsd-java-outgoing; Fri, 12 Jun 1998 08:55:11 -0700 (PDT) (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 IAA05580 for ; Fri, 12 Jun 1998 08:54:35 -0700 (PDT) (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 JAA18906; Fri, 12 Jun 1998 09:54:28 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id JAA20854; Fri, 12 Jun 1998 09:54:21 -0600 Date: Fri, 12 Jun 1998 09:54:21 -0600 Message-Id: <199806121554.JAA20854@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Joe Cc: freebsd-java@FreeBSD.ORG Subject: Re: JDK 1.1.6 In-Reply-To: <35806FF2.7B04A7A0@horizonti.com> References: <35806FF2.7B04A7A0@horizonti.com> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > How come JDK 1.1.6 isn't on the FreeBSD Java page? Is it still in beta? Because I'm in California on business, and a developer wanted some fixes in it before I released it publically. Soon, before July if I have my way. :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message