From owner-freebsd-current Sat Jan 18 17:30:39 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCA6E37B401 for ; Sat, 18 Jan 2003 17:30:37 -0800 (PST) Received: from cabrillo.edu (boris.cabrillo.cc.ca.us [207.62.187.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 785E843EB2 for ; Sat, 18 Jan 2003 17:30:37 -0800 (PST) (envelope-from wiholt@cabrillo.edu) Received: from [63.249.101.109] (account ) by cabrillo.edu (CommuniGate Pro WebUser 3.5.9) with HTTP id 4022876 for ; Sat, 18 Jan 2003 17:30:31 -0800 From: "William Holt" Subject: RC3 with JDK1.3.1 cause bus error core dump To: freebsd-current@FreeBSD.ORG X-Mailer: CommuniGate Pro Web Mailer v.3.5.9 Date: Sat, 18 Jan 2003 17:30:31 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have been trying to use Jetty with RC3 and not having any luck. Today I pinned it down to a problem with trying to convert a SocketListener to a String! The following short program crashes in exactly the same way as Jetty... Any ideas how to fix this? Thank you, -Will ===============snip===================== import java.net.*; public class CrashBSD { static public void main( String args[] ) { try { ServerSocket ss = new ServerSocket( 0, 4 ); System.out.println( ss ); } catch ( Exception e ) { System.out.println( e ); System.exit( 1 ); } } } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message