From owner-freebsd-java Sun Jun 9 10:28: 5 2002 Delivered-To: freebsd-java@freebsd.org Received: from plato.webprogrammers.net (plato.webprogrammers.net [204.221.75.12]) by hub.freebsd.org (Postfix) with ESMTP id AD7CC37B407 for ; Sun, 9 Jun 2002 10:27:53 -0700 (PDT) Received: from jstepkaxp (c66.191.144.249.roc.mn.charter.com [66.191.144.249]) by plato.webprogrammers.net (8.12.3/8.12.3) with ESMTP id g59HS92k034727 for ; Sun, 9 Jun 2002 12:28:10 -0500 (CDT) (envelope-from jstepka@webprogrammers.net) Message-ID: <00de01c20fda$fe3664e0$1f01010a@jstepkaxp> From: "Justen Stepka" To: References: <004b01c20f4c$678a8e60$1f01010a@jstepkaxp> <20020609.124654.596520665.shudoh@localhost> Subject: Re: jdk 1.3.1p6 + shujit + orion 1.5.4 Date: Sun, 9 Jun 2002 12:27:55 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Excellent. I was able to implement this fine, but I have noticed a few errors with the system. when I access the following page everything works fine (JSP page) http://10.1.1.39:8090/examples/jsp/num/numguess.jsp but when I try and access an html page http://10.1.1.39:8090/examples/jsp/colors/colors.html the system gives me an error 500 page with the following error java.lang.IllegalAccessError: final or private field at com.evermind[Orion/1.5.4 (build 10585)]._cp._shb(., Compiled Code) at com.evermind[Orion/1.5.4 (build 10585)]._hv._wmb(., Compiled Code) at com.evermind[Orion/1.5.4 (build 10585)]._co._wbb(., Compiled Code) at com.evermind[Orion/1.5.4 (build 10585)]._co._fs(., Compiled Code) at com.evermind[Orion/1.5.4 (build 10585)]._bt.run(., Compiled Code) I have yet to test this system on a deployed war/ear. Thanks, Justen Stepka ----- Original Message ----- From: To: ; Sent: Saturday, June 08, 2002 10:46 PM Subject: Re: jdk 1.3.1p6 + shujit + orion 1.5.4 > Hi Justen, > > > I am wondering if anyone has had any luck running Orion 1.5.4 with the > > jdk1.3.1p6 + ShuJIT packages? > > > > Currently I am able to start Orion with ShuJIT, but when I try and access > > the server I get the following as an output to the webbrowser with zero > > console output: > > > > java.lang.IllegalAccessError: final or private field > > at com.evermind[Orion/1.5.4 (build 10585)]._cp._shb(., Compiled Code) > > > If I turn off ShuJIT, the system will work instantly. > > Throwing the exception in that situation is certainly a shuJIT's > peculiar feature. But it is the correct behavior prescribed by the > Java Language and JVM specification. Orion is violating access > boundary and slack access control of JDK misses the bug. > There are bugs in both Orion 1.5.4 and the JDK. > > I have received a report on this problem three weeks ago. I could > track down the cause of it and sumitted a bug report to Orion's > Bugzilla. see > http://bugzilla.orionserver.com/bugzilla/show_bug.cgi?id=796 > > > The mechanism of the Orion's bug is as follows: > > The `_shb' method of the `com.evermind._cp' class tries to access the > `lock' field of the `com.evermind.server.http.HttpDateFormat'. The > `lock' field is specifiad as `static final' and without any access > modifier (e.g. public, protected or private). Then, the field cannot > be accessed from other package. According to the Java specifications > the com.evermind._cp#_shb() cannot access the > com.evermind.server.http.HttpDateFormat#lock. But the slack access > control of JDK allows such an illegal access. > ShuJIT catches the access and throw an IllegalAccessError. > > > I have implemented a work-around on shuJIT. > I placed a new archive of shuJIT named shujit-020521.tar.gz > on the shuJIT web page. > In compiler.h in the new archive, you can find a line as follows: > > #undef SLACK_ACCESS_CONTROL > > If this line is changed to `#define', the strict access control of > shuJIT will be loosen and Orion 1.5.4 will run. > > > Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > ----- Original Message ----- From: To: ; Sent: Saturday, June 08, 2002 10:46 PM Subject: Re: jdk 1.3.1p6 + shujit + orion 1.5.4 > Hi Justen, > > > I am wondering if anyone has had any luck running Orion 1.5.4 with the > > jdk1.3.1p6 + ShuJIT packages? > > > > Currently I am able to start Orion with ShuJIT, but when I try and access > > the server I get the following as an output to the webbrowser with zero > > console output: > > > > java.lang.IllegalAccessError: final or private field > > at com.evermind[Orion/1.5.4 (build 10585)]._cp._shb(., Compiled Code) > > > If I turn off ShuJIT, the system will work instantly. > > Throwing the exception in that situation is certainly a shuJIT's > peculiar feature. But it is the correct behavior prescribed by the > Java Language and JVM specification. Orion is violating access > boundary and slack access control of JDK misses the bug. > There are bugs in both Orion 1.5.4 and the JDK. > > I have received a report on this problem three weeks ago. I could > track down the cause of it and sumitted a bug report to Orion's > Bugzilla. see > http://bugzilla.orionserver.com/bugzilla/show_bug.cgi?id=796 > > > The mechanism of the Orion's bug is as follows: > > The `_shb' method of the `com.evermind._cp' class tries to access the > `lock' field of the `com.evermind.server.http.HttpDateFormat'. The > `lock' field is specifiad as `static final' and without any access > modifier (e.g. public, protected or private). Then, the field cannot > be accessed from other package. According to the Java specifications > the com.evermind._cp#_shb() cannot access the > com.evermind.server.http.HttpDateFormat#lock. But the slack access > control of JDK allows such an illegal access. > ShuJIT catches the access and throw an IllegalAccessError. > > > I have implemented a work-around on shuJIT. > I placed a new archive of shuJIT named shujit-020521.tar.gz > on the shuJIT web page. > In compiler.h in the new archive, you can find a line as follows: > > #undef SLACK_ACCESS_CONTROL > > If this line is changed to `#define', the strict access control of > shuJIT will be loosen and Orion 1.5.4 will run. > > > Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ > > 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 Sun Jun 9 18: 9:20 2002 Delivered-To: freebsd-java@freebsd.org Received: from mx1.aist.go.jp (mx1.aist.go.jp [150.29.246.133]) by hub.freebsd.org (Postfix) with ESMTP id 53F4C37B40C for ; Sun, 9 Jun 2002 18:09:16 -0700 (PDT) Received: from rpsmtp1.aist.go.jp by mx1.aist.go.jp with ESMTP id g5A19DH14559; Mon, 10 Jun 2002 10:09:13 +0900 (JST) env-from (shudo@computer.org) Received: from mail03.aist.go.jp by rpsmtp1.aist.go.jp with ESMTP id g5A19CQ24625; Mon, 10 Jun 2002 10:09:12 +0900 (JST) env-from (shudo@computer.org) Received: from aist.go.jp by mail03.aist.go.jp with ESMTP id g5A19BJ24737; Mon, 10 Jun 2002 10:09:12 +0900 (JST) env-from (shudo@computer.org) Date: Mon, 10 Jun 2002 10:09:31 +0900 (JST) Message-Id: <20020610.100931.846934146.shudoh@localhost> To: jstepka@webprogrammers.net, freebsd-java@FreeBSD.ORG Subject: Re: jdk 1.3.1p6 + shujit + orion 1.5.4 From: shudo@computer.org In-Reply-To: <00de01c20fda$fe3664e0$1f01010a@jstepkaxp> References: <004b01c20f4c$678a8e60$1f01010a@jstepkaxp> <20020609.124654.596520665.shudoh@localhost> <00de01c20fda$fe3664e0$1f01010a@jstepkaxp> X-Mailer: Mew version 2.1 on XEmacs 21.4.6 (Common Lisp) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Justen, > Excellent. > > I was able to implement this fine, but I have noticed a few errors > with the system. > > when I access the following page everything works fine (JSP page) > http://10.1.1.39:8090/examples/jsp/num/numguess.jsp > > but when I try and access an html page > http://10.1.1.39:8090/examples/jsp/colors/colors.html > > the system gives me an error 500 page with the following error > > java.lang.IllegalAccessError: final or private field > at com.evermind[Orion/1.5.4 (build 10585)]._cp._shb(., Compiled Code) Would you clear the cache of your web browser or cache (proxy) server? And try loading again. If you use Mozilla or Navigator, you can load the web pages ignoring the cached pages by pushing the reload button and the shift key at the same time. Both above demo JSP applications work well on my machine with the following work-around. > From: > > I have implemented a work-around on shuJIT. > > I placed a new archive of shuJIT named shujit-020521.tar.gz > > on the shuJIT web page. > > In compiler.h in the new archive, you can find a line as follows: > > > > #undef SLACK_ACCESS_CONTROL > > > > If this line is changed to `#define', the strict access control of > > shuJIT will be loosen and Orion 1.5.4 will run. Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 10 0:47:58 2002 Delivered-To: freebsd-java@freebsd.org Received: from web14402.mail.yahoo.com (web14402.mail.yahoo.com [216.136.174.59]) by hub.freebsd.org (Postfix) with SMTP id 007F737B405 for ; Mon, 10 Jun 2002 00:47:55 -0700 (PDT) Message-ID: <20020610074755.61422.qmail@web14402.mail.yahoo.com> Received: from [202.88.149.172] by web14402.mail.yahoo.com via HTTP; Mon, 10 Jun 2002 00:47:55 PDT Date: Mon, 10 Jun 2002 00:47:55 -0700 (PDT) From: sonam singh Subject: Again please help..Tomcat4+Ibm jdk1.3 Hang.. Look at .. To: freebsd-java@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi I installed the linux-jdk1.3 and linux-ibm-jdk1.3.1 using ports . When i tried to run tomcat4+with above JVM machine gets hang...Below is some of the parameter which i tried .. Os Jdk Tomcat Run/Or Not FreeBSD Sun1.2 4x Yes FreeBSD Sun1.3 4x No(HotSpot Error Unable to Find Pid) ..Why??? FreBSD Sun1.4 4x No(HotSpot Error Unable to Find Pid) ..Why??? FreeBSD IBM1.3 4x Hang..Why ??? FreeBSD IBM1.3.1 4x Hang..Why??? Windows98 IBM1.3 4x Run Windows98 IBM1.3.1 4x Run 4x:-Tomcat 4.0.1 and Tomcat4.0.3 FreeBSD4.5 Release + Linux_base6 Is there any problem with Tomcat4 or FreeBSD . I thing the problem is on the FreeBSD .Tomcat4 runs successfuly even in windows98... Can u provide any suggestion.... Bye Sonam __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 10 1:34:20 2002 Delivered-To: freebsd-java@freebsd.org Received: from l04.research.kpn.com (l04.research.kpn.com [139.63.192.204]) by hub.freebsd.org (Postfix) with ESMTP id 39ADF37B405 for ; Mon, 10 Jun 2002 01:34:18 -0700 (PDT) Received: by l04.research.kpn.com with Internet Mail Service (5.5.2653.19) id ; Mon, 10 Jun 2002 10:34:16 +0200 Message-ID: <59063B5B4D98D311BC0D0001FA7E452205FDA77D@l04.research.kpn.com> From: K.J.Koster@kpn.com To: jcm@freebsd-uk.eu.org Cc: freebsd-java@FreeBSD.ORG Subject: RE: Best IDE for slow system? Date: Mon, 10 Jun 2002 10:34:16 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dear jm, > > what kind of applications are you working on, anyway? Also, > how are big > Java projects deployed? I'm only familiar with the > Win32/Installshield > process. I'm assuming you are talking about Java development. > I'm working on a fairly large J2EE based application. We'll soon have about 800 users who use it for their dayly job. It's big in the sense that it integrates with a couple of Legacy (yes, capital L) information systems. I believe one of them is even pre-1970. It's your average J2EE app server, large commercial DB backend with a message broker interface to backend systems. I've done my time with VB/InstallShield. No more trying to find out why the application won't work if Word isn't installed, or why the application breaks their stupid bouncy bears screensaver. (Can you tell I dislike VB?) > > | You can't have everything. Where would you put it? > | [Steven Wright] > > I'm going to see a Steven Wright show next weekend. ;-) > I've never even seen one, but I like the quote. Let me know how it was. Kees Jan ===================================================== You can't have everything. Where would you put it? [Steven Wright] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 10 12:33:13 2002 Delivered-To: freebsd-java@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id B983037B405; Mon, 10 Jun 2002 12:33:06 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id D9CD0424; Mon, 10 Jun 2002 20:33:01 +0100 (BST) Date: Mon, 10 Jun 2002 20:33:01 +0100 From: Josef Karthauser To: Ernst de Haan Cc: cvs@FreeBSD.org, java@FreeBSD.org, ports@FreeBSD.org, Greg Lewis , Tim E Schafer , Ade Lovett , portmgr@FreeBSD.org Subject: Re: Repocopy request / Unification of JDK port names Message-ID: <20020610193301.GI67403@genius.tao.org.uk> References: <200206070920.56887.znerd@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KrHCbChajFcK0yQE" Content-Disposition: inline In-Reply-To: <200206070920.56887.znerd@FreeBSD.org> User-Agent: Mutt/1.3.99i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --KrHCbChajFcK0yQE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 07, 2002 at 09:20:56AM +0200, Ernst de Haan wrote: > > > Hereby I request the following repocopies: > > > > > > ports/java/jdk --> ports/java/jdk11 > > > ports/java/jdk12-beta --> ports/java/jdk12 > > > ports/java/linux-jdk --> ports/java/linux-blackdown-jdk12 > > > ports/java/linux-jdk13 --> ports/java/linux-sun-jdk13 > > > ports/java/linux-jdk14 --> ports/java/linux-sun-jdk14 > > > > Approved. Remember that it is also your responsibility to fix > > ports/java/Makefile and modules after the copies are done. >=20 > Please don't perform these repocopies until after the weekend, because I'= m=20 > away during the weekend and I want to have this fixed ASAP after the=20 > repocopies. Done. Joe --KrHCbChajFcK0yQE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (FreeBSD) iEYEARECAAYFAj0E/uwACgkQXVIcjOaxUBZZkACeKtN48HwlvgOcMQnFRawciLR4 c9QAoMOzAzFLQxe7qd4w71+M1Owi3v9x =rYCF -----END PGP SIGNATURE----- --KrHCbChajFcK0yQE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 10 23:57:28 2002 Delivered-To: freebsd-java@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 6DFE137B400; Mon, 10 Jun 2002 23:56:40 -0700 (PDT) Received: from yahoo.com ([24.98.76.112]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020611065639.XVXG11426.rwcrmhc51.attbi.com@yahoo.com>; Tue, 11 Jun 2002 06:56:39 +0000 Message-ID: <3D059F2D.7000808@yahoo.com> Date: Tue, 11 Jun 2002 02:56:45 -0400 From: "Shelton C. Johnson Jr." User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020608 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG, Maxim Sobolev , Ernst de Haan Subject: PR submitted for javavmwrapper enhancement, RE: Patch to javavmwrapper.sh to support all sym-link executables in jdk/bin Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FYI, I have submitted PR ports/39080. It contains some enhancements to the javavmwrapper script which make it more generally useful. These are minor refinements of the patch I sent to the list in April 2001. When invoked as registervm, in addition to recording the full path to the java executable, it creates a series of symbolic links (in $PREFIX/bin -> typically /usr/local/bin) which correspond to similar links in the same directory as the java executable. The end result of all of this is that instead of simply being able to run 'javavm' as a sort of virtual 'java' command, you may run any of the 45 or so utilities provided with the typical JVM using their normal names. So /usr/local/bin/java will run as /usr/local/jdk1.3.1/bin/java if you have built the native 1.3.1 JDK. Likewise javac, jar, rmic etc are all available. Let me know what you think. http://www.freebsd.org/cgi/query-pr.cgi?pr=39080 Shelton C. Johnson Jr. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 11 0:50:19 2002 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 3681837B404 for ; Tue, 11 Jun 2002 00:50:15 -0700 (PDT) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.3/8.12.3) with ESMTP id g5B7oNmq021138 for ; Tue, 11 Jun 2002 09:50:23 +0200 (CEST) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.3/8.12.3/Submit) id g5B7oNjv021137 for java@FreeBSD.org; Tue, 11 Jun 2002 09:50:23 +0200 (CEST) Content-Type: text/plain; charset="us-ascii" From: Ernst de Haan To: java@FreeBSD.org Subject: [ANN] JBoss 3 now in ports Date: Tue, 11 Jun 2002 09:50:23 +0200 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200206110950.23378.znerd@FreeBSD.org> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Announcement: JBoss 3.0.0 is now available in the FreeBSD ports system as java/jboss3. Test results would be highly appreciated. Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 11 1:21:24 2002 Delivered-To: freebsd-java@freebsd.org Received: from raclesmtp01.ra.rockwell.com (mkedef1.rockwellautomation.com [208.22.104.18]) by hub.freebsd.org (Postfix) with ESMTP id B538537B403 for ; Tue, 11 Jun 2002 01:21:20 -0700 (PDT) Subject: Re: [ANN] JBoss 3 now in ports To: java@FreeBSD.ORG From: mkes@ra.rockwell.com Date: Tue, 11 Jun 2002 10:19:31 +0200 Message-ID: X-MIMETrack: Serialize by Router on RACleSMTP01/Cleveland/RA/Rockwell(Release 5.0.7 |March 21, 2001) at 06/11/2002 04:13:45 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is good news but I cannot see it in ports ( I tried http://www.freebsd.org/ports/ and ftp://ftp.freebsd.org/pub/FreeBSD/ports ). There are 2 distributions at the JBoss site - one with their own servlet container and another one with integrated Tomcat. Which one is in the port? Thanks Mira Ernst de Haan @FreeBSD.ORG on 06/11/2002 09:50:23 AM Sent by: owner-freebsd-java@FreeBSD.ORG To: java@FreeBSD.ORG cc: Subject: [ANN] JBoss 3 now in ports Announcement: JBoss 3.0.0 is now available in the FreeBSD ports system as java/jboss3. Test results would be highly appreciated. Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ 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 11 1:25:34 2002 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id ECE6A37B407 for ; Tue, 11 Jun 2002 01:25:30 -0700 (PDT) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.3/8.12.3) with ESMTP id g5B8Pdmq021505; Tue, 11 Jun 2002 10:25:39 +0200 (CEST) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.3/8.12.3/Submit) id g5B8PdE2021504; Tue, 11 Jun 2002 10:25:39 +0200 (CEST) Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: mkes@ra.rockwell.com Subject: Re: [ANN] JBoss 3 now in ports Date: Tue, 11 Jun 2002 10:25:39 +0200 X-Mailer: KMail [version 1.4] References: In-Reply-To: Cc: java@FreeBSD.ORG MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200206111025.39448.znerd@FreeBSD.org> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, > This is good news but I cannot see it in ports ( I tried > http://www.freebsd.org/ports/ and ftp://ftp.freebsd.org/pub/FreeBSD/ports > ). Try this one: http://www.freebsd.org/cgi/cvsweb.cgi/ports/java/jboss3/ or just update your local ports tree. It will show up at the locations you mentioned after a while. > There are 2 distributions at the JBoss site - one with their own servlet > container and another one with integrated Tomcat. Which one is in the > port? The one with their own servlet container. Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 11 15:33:34 2002 Delivered-To: freebsd-java@freebsd.org Received: from scan.ji-net.com (scan.ji-net.com [203.130.156.4]) by hub.freebsd.org (Postfix) with ESMTP id 9556037B408 for ; Tue, 11 Jun 2002 15:33:30 -0700 (PDT) Received: from net1.ji-net.com ([203.156.15.120]) by scan.ji-net.com (8.11.2/8.11.2) with SMTP id g5BMXSQ18873 for ; Wed, 12 Jun 2002 05:33:28 +0700 Message-Id: <200206112233.g5BMXSQ18873@scan.ji-net.com> Date: Wed, 12 Jun 2002 05:35:31 To: java@FreeBSD.org From: goodhealthgoodjob@yahoo.com (foodforhealth) Subject: วันนี้คุณดูแลสุขภาพแล้วหรือยัง X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.org/) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org แนะนำโปรแกรมควบคุมน้ำหนัก เพิ่มน้ำหนัก รักษาสุขภาพ คุณหรือคนที่คุณรักกำลังมองหาวิธีดูแลสุขภาพที่เป็นธรรมชาติอยู่ใช่ไหม? หากคุณเบื่อหน่ายกับความพยายามที่ไม่ประสบความสำเร็จครั้งแล้วครั้งเล่า ในการดูแลสุขภาพเพื่อรูปร่างที่ดี เรามีโปรแกรมโภชนาการเพื่อสุขภาพ ที่ช่วยคุณได้ สำหรับผู้ที่มีปัญหา น้ำหนักเกินหรืออ้วน, ผอมเกินไป, มีปัญหาสุขภาพ (ผอมแห้งแรงน้อย, พุงห้อยอืดอาด, ขาดความมั่นใจ, โรคภัยถามหา,ใบหน้าเป็นสิว, ผิวพรรณเหี่ยวย่น, คนเล่นกีฬา, คุณป้าวัยทอง, คุณน้องๆ ที่อยากสวย)เป็นผลิตภัณฑ์จากธรรมชาติ 100 % ไม่ใช่ยา ไม่ต้องอดอาหาร ไม่มีผลข้างเคียง ไม่ต้องออกกำลังกาย ฟังดูไม่น่าเชื่อแต่ก็ต้องเชื่อเพราะผ่าน อย.ทุกประเทศที่เข้าไปขายโดยเฉพาะประเทศไทยและอเมริกา ให้สารอาหารครบถ้วน ปรับสมดุลของร่างกายลดไขมันส่วนเกิน รับรองผลภายใน30วันด้วยระบบคืนเงิน100%(แพทย์ผู้คิดค้นอาหารสูตรนี้คือคนที่คิดค้นอาหารให้นักบินอวกาศองค์การนาซ่า) สนใจ ขอคำแนะนำเพิ่มเติมได้ที่ คุณสิริ 01-8901701พบคำตอบสุดท้ายของคุณได้ที่นี่ http://www.smartslender.com/foodforhealth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 12 12:32:25 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id C5CDB37B40D for ; Wed, 12 Jun 2002 12:32:17 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id PAA97566 for ; Wed, 12 Jun 2002 15:32:16 -0400 (EDT) Message-ID: <3D07A193.68536CEC@levindustries.com> Date: Wed, 12 Jun 2002 15:31:31 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@freebsd.org Subject: Apache+PHP+Java Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi! I'm trying to compile PHP with Java support, and am running into some problems (about two days worth so far). I guess my short question is, which JDK port should I be using to do this? Currently, I have linux-jdk1.4.0.01 installed and am trying to use that. I've read a lot about a FreeBSD native version - does this actually exist? If so, what's the port name for it? Anyway, here's what I have in my php.ini file: [Java] java.class.path = /usr/local/lib/php/php_java.jar java.home = /usr/local/linux-jdk java.library = /usr/local/linux-jdk/jre/lib/i386/server/libjvm.so java.library.path = /usr/local/lib/php/extensions:/usr/compat/linux/lib extension=libphp_java.so And here's the error message I receive: Unable to load Java Library /usr/local/linux-jdk/jre/lib/i386/server/libjvm.so, error: Shared object "libnsl.so.1" not found in /usr/home/research/htdocs/java.php on line 3 I've tried symlinking the various objects it needs to /usr/local/lib, but then the script just didn't work, and the Apache error log contained a series of these messages: [notice] child pid 50819 exit signal Bus error (10) Any ideas? Thanks in advance for your help, Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 12 13:12:18 2002 Delivered-To: freebsd-java@freebsd.org Received: from recourse.com (mail.recourse.com [206.171.10.25]) by hub.freebsd.org (Postfix) with ESMTP id 085D737B400 for ; Wed, 12 Jun 2002 13:12:15 -0700 (PDT) Received: from recourse.com (localhost [127.0.0.1]) by recourse.com (8.12.1/8.12.1) with ESMTP id g5CKBDVI006443; Wed, 12 Jun 2002 13:11:13 -0700 (PDT) Received: from localhost (rross@localhost) by recourse.com (8.12.1/8.12.1/Submit) with ESMTP id g5CKBDK8006440; Wed, 12 Jun 2002 13:11:13 -0700 (PDT) Date: Wed, 12 Jun 2002 13:11:13 -0700 (PDT) From: "Robert F. Ross" X-Sender: rross@recourse.com To: Josh Levine Cc: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java In-Reply-To: <3D07A193.68536CEC@levindustries.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org You need a linux libnsl if it's the linux jdk you're running, not a freebsd libnsl. Symlinking the wrong platform libs won't help much since it's being emulated. The native JDKs are in /usr/ports, but threading/JNI don't seem to be as stable in them as with the linux JDK. IANAE. Robert Ross Senior Software Engineer Recourse Technologies, Inc. On Wed, 12 Jun 2002, Josh Levine wrote: > Hi! > > I'm trying to compile PHP with Java support, and am running into some > problems (about two days worth so far). I guess my short question is, > which JDK port should I be using to do this? > > Currently, I have linux-jdk1.4.0.01 installed and am trying to use > that. I've read a lot about a FreeBSD native version - does this > actually exist? If so, what's the port name for it? Anyway, here's > what I have in my php.ini file: > > [Java] > java.class.path = /usr/local/lib/php/php_java.jar > java.home = /usr/local/linux-jdk > java.library = /usr/local/linux-jdk/jre/lib/i386/server/libjvm.so > java.library.path = /usr/local/lib/php/extensions:/usr/compat/linux/lib > extension=libphp_java.so > > And here's the error message I receive: > > Unable to load Java Library > /usr/local/linux-jdk/jre/lib/i386/server/libjvm.so, error: Shared object > "libnsl.so.1" not found in /usr/home/research/htdocs/java.php on line 3 > > I've tried symlinking the various objects it needs to /usr/local/lib, > but then the script just didn't work, and the Apache error log contained > a series of these messages: > > [notice] child pid 50819 exit signal Bus error (10) > > Any ideas? > > Thanks in advance for your help, > Josh Levine > > 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 Wed Jun 12 13:23:28 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id 9D44437B40A for ; Wed, 12 Jun 2002 13:23:23 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id QAA01629 for ; Wed, 12 Jun 2002 16:23:17 -0400 (EDT) Message-ID: <3D07AD88.B784C136@levindustries.com> Date: Wed, 12 Jun 2002 16:22:32 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "Robert F. Ross" wrote: > > You need a linux libnsl if it's the linux jdk you're running, not a > freebsd libnsl. Symlinking the wrong platform libs won't help much since > it's being emulated. The native JDKs are in /usr/ports, but threading/JNI > don't seem to be as stable in them as with the linux JDK. IANAE. Actually, the only libnsl on my system is in /usr/compat/linux/lib - that's what I symlinked from the /usr/local/lib directory. I assumed (perhaps incorrectly?) that those were Linux libraries. In /usr/ports/java, is anything that doesn't start with 'linux-' native? I tried building jdk13, but ran into several errors (I believe related to Motif?) Perhaps I should try an earlier version? Thanks for your response, Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 12 13:32:33 2002 Delivered-To: freebsd-java@freebsd.org Received: from recourse.com (mail.recourse.com [206.171.10.25]) by hub.freebsd.org (Postfix) with ESMTP id 6F16F37B404 for ; Wed, 12 Jun 2002 13:32:29 -0700 (PDT) Received: from recourse.com (localhost [127.0.0.1]) by recourse.com (8.12.1/8.12.1) with ESMTP id g5CKVgVI007356; Wed, 12 Jun 2002 13:31:42 -0700 (PDT) Received: from localhost (rross@localhost) by recourse.com (8.12.1/8.12.1/Submit) with ESMTP id g5CKVgAI007347; Wed, 12 Jun 2002 13:31:42 -0700 (PDT) Date: Wed, 12 Jun 2002 13:31:42 -0700 (PDT) From: "Robert F. Ross" X-Sender: rross@recourse.com To: Josh Levine Cc: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java In-Reply-To: <3D07AD88.B784C136@levindustries.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org yeah, /usr/compat/linux is where the linux emul stuff lives. I don't know what the story is with the lib not being found, then. Some futzing with ldd and truss might help. The 1.2 and 1.3 jdks for freebsd have both worked for me. It's possible that they require X to be installed on the machine to compile, though. Someone else could probably be of more help on that point. Robert Ross Senior Software Engineer Recourse Technologies, Inc. On Wed, 12 Jun 2002, Josh Levine wrote: > "Robert F. Ross" wrote: > > > > You need a linux libnsl if it's the linux jdk you're running, not a > > freebsd libnsl. Symlinking the wrong platform libs won't help much since > > it's being emulated. The native JDKs are in /usr/ports, but threading/JNI > > don't seem to be as stable in them as with the linux JDK. IANAE. > > Actually, the only libnsl on my system is in /usr/compat/linux/lib - > that's what I symlinked from the /usr/local/lib directory. I assumed > (perhaps incorrectly?) that those were Linux libraries. > > In /usr/ports/java, is anything that doesn't start with 'linux-' > native? I tried building jdk13, but ran into several errors (I believe > related to Motif?) Perhaps I should try an earlier version? > > Thanks for your response, > Josh Levine > > 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 Wed Jun 12 14:18: 1 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id 98A4537B40C for ; Wed, 12 Jun 2002 14:17:53 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id RAA47010 for ; Wed, 12 Jun 2002 17:17:52 -0400 (EDT) Message-ID: <3D07BA52.B1631D0A@levindustries.com> Date: Wed, 12 Jun 2002 17:17:06 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "Robert F. Ross" wrote: > > yeah, /usr/compat/linux is where the linux emul stuff lives. I don't know > what the story is with the lib not being found, then. Some futzing with > ldd and truss might help. The 1.2 and 1.3 jdks for freebsd have both > worked for me. It's possible that they require X to be installed on the > machine to compile, though. Someone else could probably be of more help on > that point. Ahh, X. I didn't have any of the X ports downloaded...that might explain some of the errors. I fixed that and am now re-building jdk13 (and it is building a lot of X stuff). Thanks! Hopefully now I'll be able to get the PHP part working... As an aside, is it normal not to give an error message if the port is missing from the ports directory entirely? --Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 12 21:18:39 2002 Delivered-To: freebsd-java@freebsd.org Received: from mgr4.xmission.com (mgr4.xmission.com [198.60.22.204]) by hub.freebsd.org (Postfix) with ESMTP id 7CBB437B41F for ; Wed, 12 Jun 2002 21:18:33 -0700 (PDT) Received: from mail by mgr4.xmission.com with spam-scanned (Exim 3.35 #1) id 17IM49-0002Hr-00; Wed, 12 Jun 2002 22:18:33 -0600 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr4.xmission.com with esmtp (Exim 3.35 #1) id 17IM48-0002Hm-00; Wed, 12 Jun 2002 22:18:32 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id g5D4INU88292; Thu, 13 Jun 2002 13:48:23 +0930 (CST) (envelope-from glewis) Date: Thu, 13 Jun 2002 13:48:23 +0930 From: Greg Lewis To: Josh Levine Cc: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java Message-ID: <20020613134822.A88274@misty.eyesbeyond.com> References: <3D07BA52.B1631D0A@levindustries.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3D07BA52.B1631D0A@levindustries.com>; from joshl@levindustries.com on Wed, Jun 12, 2002 at 05:17:06PM -0400 X-Spam-Status: No, hits=-4.4 required=8.0 tests=IN_REP_TO version=2.20 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Jun 12, 2002 at 05:17:06PM -0400, Josh Levine wrote: > As an aside, is it normal not to give an error message if the port is > missing from the ports directory entirely? I don't understand what you're asking here, please explain :). What error did you (or didn't you) get trying to build openmotif? -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 12 23:48: 1 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id 542DC37B41B for ; Wed, 12 Jun 2002 23:47:58 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id CAA68507 for ; Thu, 13 Jun 2002 02:47:53 -0400 (EDT) Message-ID: <3D083FE7.3B3F0516@levindustries.com> Date: Thu, 13 Jun 2002 02:47:03 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: Re: Apache+PHP+Java References: <3D07BA52.B1631D0A@levindustries.com> <20020613134822.A88274@misty.eyesbeyond.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Greg Lewis wrote: > On Wed, Jun 12, 2002 at 05:17:06PM -0400, Josh Levine wrote: > > As an aside, is it normal not to give an error message if the port is > > missing from the ports directory entirely? > > I don't understand what you're asking here, please explain :). What > error did you (or didn't you) get trying to build openmotif? Sorry - what I was talking about is that when I tried building jdk13 for the first time, it just died on me in the middle (now I know that it was a result of the missing X stuff). It didn't install the various X related ports it needed because I had foolishly added 'x*' to my cvsup refuse file, so they weren't in my ports directory. I've only been administering a FreeBSD box for about a week now, so I'm not sure if this is normal behavior or not...it didn't even occur to me that a jdk would require X libraries. Anyways, thanks to Robert for pointing me in the right direction; I now have jdk13 built and will try compiling PHP with it tomorrow. --Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 4:44:39 2002 Delivered-To: freebsd-java@freebsd.org Received: from puget.esil.univ-mrs.fr (puget.esil.univ-mrs.fr [139.124.41.103]) by hub.freebsd.org (Postfix) with ESMTP id 16FDB37B428; Thu, 13 Jun 2002 04:43:48 -0700 (PDT) Received: from localhost (rv@localhost) by puget.esil.univ-mrs.fr (8.11.6/8.11.6) with ESMTP id g5DBnKw16775; Thu, 13 Jun 2002 13:49:21 +0200 (CEST) (envelope-from herve.quiroz@esil.univ-mrs.fr) X-Authentication-Warning: puget.esil.univ-mrs.fr: rv owned process doing -bs Date: Thu, 13 Jun 2002 13:49:20 +0200 (CEST) From: Herve Quiroz X-X-Sender: rv@puget.esil.univ-mrs.fr To: Ernst de Haan Cc: java@FreeBSD.ORG Subject: Re: Request for review: Standardising Java library directory locations In-Reply-To: <200205101311.PAA08481@smtp.hccnet.nl> Message-ID: <20020613122027.B9053-100000@puget.esil.univ-mrs.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Ernst, I've thought of your proposal those last weeks and still I haven't found any conclusive solution... Regarding the docs/apidocs/examples in different paths, I am thinking of the LaTeX texmf tree. Indeed, for LaTeX, everything is stored under the $PREFIX/texmf directory, including styles (->java jars), config files, tool docs (->java docs), styles docs(->java apidocs), and examples (->java examples). Some may argue it is an single port so it has its own directory and I would agree... But the point is : LaTeX users get an quick and easy way to locate everything related to LaTeX. I am not in any way saying this approach is the best on just better. In fact, I don't even know myself which one I would choose. So far IMHO there are 3 ways for the java port hierarchy : (1) eveyrthing under the same directory : $JAVAPREFIX/lib/$JAVALIBNAME.jar : JAR file $JAVAPREFIX/docs/$JAVALIBNAME/ : docs $JAVAPREFIX/docs/$JAVALIBNAME/apidoc/ : apidocs $JAVAPREFIX/examples/$JAVALIBNAME/ : examples $JAVAPREFIX/src/$JAVALIBNAME/ : sources (2) everything under the same dir but in its own tree : $JAVAPREFIX/$JAVALIBNAME/lib/*.jar : JARs $JAVAPREFIX/$JAVALIBNAME/docs : docs $JAVAPREFIX/$JAVALIBNAME/apidocs : apidocs $JAVAPREFIX/$JAVALIBNAME/src : sources $JAVAPREFIX/$JAVALIBNAME/examples : examples (3) using the standard (not java) hierarchy : Your current proposal. IMHO, this one best complies with hier(7) regarding "architecture-independent files" and "miscellaneous documentation"... Last point, if you take a closer look at where other non-java ports store their docs/examples/"architecture-independent files", you may notice there is no universal way so it is quite difficult for java ports to match the existing. That said, I have in mind that this mail does not bring any new idea to the community but there has been no post on the topic for the last days. It would be nice if people could bring arguments in favor or against any of the alternative so you can make the modifications to unify the java ports. BTW, nice you have unified the JDK port names. All that and also the coming Hotspot JVM will have FreeBSD the best platform for Java developers. Regards, Herv=E9 On Fri, 10 May 2002, Ernst de Haan wrote: > Hi all, > > Please review the following proposal for standardising Java library > installation directories: > > http://people.freebsd.org/~znerd/javalibdirs.html > > Kind regards, > > Ernst > > 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 Jun 13 5:37:26 2002 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 3304C37B417; Thu, 13 Jun 2002 05:37:22 -0700 (PDT) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.3/8.12.3) with ESMTP id g5DCbVmq063870; Thu, 13 Jun 2002 14:37:31 +0200 (CEST) (envelope-from ernst@zaphod.euronet.nl) Received: by zaphod.euronet.nl (8.12.3/8.12.3/Submit) id g5DCbURR063869; Thu, 13 Jun 2002 14:37:30 +0200 (CEST) Content-Type: text/plain; charset="us-ascii" From: Ernst de Haan Organization: EuroNet Internet B.V. To: java@FreeBSD.org, ports@FreeBSD.org Subject: [ANN] New port: JUMP Ultimate Math Package Date: Thu, 13 Jun 2002 14:37:30 +0200 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200206131437.30386.ernsth@nl.euro.net> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Announcement: A port for "JUMP Ultimate Math Package" was added to the ports collection today. JUMP Ultimate Math Package (JUMP) is a Java-based extensible high-precision math package. Includes support for computations based on fractions. Support is included for converting to floating point numbers and BigDecimals. The port is available in ports/java/jump. See: http://sourceforge.net/projects/jump-math/ Ernst To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 7:31:44 2002 Delivered-To: freebsd-java@freebsd.org Received: from wwweasel.geeksrus.net (wwweasel.geeksrus.net [64.8.210.226]) by hub.freebsd.org (Postfix) with ESMTP id C220437B401; Thu, 13 Jun 2002 07:31:34 -0700 (PDT) Received: from wwweasel.geeksrus.net (localhost [127.0.0.1]) by wwweasel.geeksrus.net (8.12.3/8.12.3) with ESMTP id g5DDcJLS066810; Thu, 13 Jun 2002 09:38:19 -0400 (EDT) (envelope-from alane@wwweasel.geeksrus.net) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.12.3/8.12.3/Submit) id g5DDcF1M066809; Thu, 13 Jun 2002 09:38:15 -0400 (EDT) (envelope-from alane) Date: Thu, 13 Jun 2002 09:38:15 -0400 (EDT) Message-Id: <200206131338.g5DDcF1M066809@wwweasel.geeksrus.net> To: FreeBSD-gnats-submit@freebsd.org Subject: java/jdk13: build depends on renamed port From: Alan Eldridge Reply-To: Alan Eldridge Cc: java@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Submitter-Id: current-users >Originator: Alan Eldridge >Organization: Geeksrus.NET >Confidential: no >Synopsis: java/jdk13: build depends on renamed port >Severity: serious >Priority: high >Category: ports >Class: sw-bug >Release: FreeBSD 4.6-RC i386 >Environment: System: FreeBSD wwweasel.geeksrus.net 4.6-RC FreeBSD 4.6-RC #1: Sun May 26 13:08:49 EDT 2002 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL i386 >Description: linux-jdk13 was renamed to linux-sun-jdk13; the BUILD_DEPENDS in jdk13 was not updated to reflect this changed. two effects: auto building of prereq won't (can't) happen, and linux-jdk13 is seen as an orphaned (obsolete) package with no origin by pkgdb, portsclean, etc. >How-To-Repeat: >Fix: ==8<====8<====8<====8<====8<====8<====8<====8<====8<====8<== Index: java/jdk13/Makefile =================================================================== RCS file: /home/ncvs/ports/java/jdk13/Makefile,v retrieving revision 1.26 diff -u -3 -r1.26 Makefile --- java/jdk13/Makefile 28 May 2002 01:47:45 -0000 1.26 +++ java/jdk13/Makefile 13 Jun 2002 13:33:35 -0000 @@ -19,7 +19,7 @@ BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ zip:${PORTSDIR}/archivers/zip \ gtar:${PORTSDIR}/archivers/gtar \ - ${JDK13DIR}/bin/javac:${PORTSDIR}/java/linux-jdk13 \ + ${JDK13DIR}/bin/javac:${PORTSDIR}/java/linux-sun-jdk13 \ ${X11BASE}/lib/libMrm.a:${PORTSDIR}/x11-toolkits/open-motif .if !defined(WITHOUT_PLUGIN) BUILD_DEPENDS+= msgfmt:${PORTSDIR}/devel/gettext ==8<====8<====8<====8<====8<====8<====8<====8<====8<====8<== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 7:45: 5 2002 Delivered-To: freebsd-java@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 2F58637B400; Thu, 13 Jun 2002 07:44:47 -0700 (PDT) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.3/8.12.3) with ESMTP id g5DEirmq077889; Thu, 13 Jun 2002 16:44:53 +0200 (CEST) (envelope-from ernst@zaphod.euronet.nl) Received: (from ernst@localhost) by zaphod.euronet.nl (8.12.3/8.12.3/Submit) id g5DEinFi077888; Thu, 13 Jun 2002 16:44:49 +0200 (CEST) Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: Alan Eldridge , FreeBSD-gnats-submit@freebsd.org Subject: Re: java/jdk13: build depends on renamed port Date: Thu, 13 Jun 2002 16:44:49 +0200 X-Mailer: KMail [version 1.4] Cc: java@freebsd.org, Greg Lewis References: <200206131338.g5DDcF1M066809@wwweasel.geeksrus.net> In-Reply-To: <200206131338.g5DDcF1M066809@wwweasel.geeksrus.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200206131644.49628.znerd@FreeBSD.org> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've already sent a patch to Greg Lewis. I'm waiting for him to review / approve / commit. Ernst On Thursday 13 June 2002 15:38, Alan Eldridge wrote: > >Submitter-Id: current-users > >Originator: Alan Eldridge > >Organization: Geeksrus.NET > >Confidential: no > >Synopsis: java/jdk13: build depends on renamed port > >Severity: serious > >Priority: high > >Category: ports > >Class: sw-bug > >Release: FreeBSD 4.6-RC i386 > >Environment: > > System: FreeBSD wwweasel.geeksrus.net 4.6-RC FreeBSD 4.6-RC #1: Sun May 26 > 13:08:49 EDT 2002 root@wwweasel.geeksrus.net:/usr/obj/usr/src/sys/WWWEASEL > i386 > > >Description: > > linux-jdk13 was renamed to linux-sun-jdk13; the BUILD_DEPENDS in jdk13 was > not updated to reflect this changed. > > two effects: auto building of prereq won't (can't) happen, and linux-jdk13 > is seen as an orphaned (obsolete) package with no origin by pkgdb, > portsclean, etc. > > >How-To-Repeat: > >Fix: > > ==8<====8<====8<====8<====8<====8<====8<====8<====8<====8<== > Index: java/jdk13/Makefile > =================================================================== > RCS file: /home/ncvs/ports/java/jdk13/Makefile,v > retrieving revision 1.26 > diff -u -3 -r1.26 Makefile > --- java/jdk13/Makefile 28 May 2002 01:47:45 -0000 1.26 > +++ java/jdk13/Makefile 13 Jun 2002 13:33:35 -0000 > @@ -19,7 +19,7 @@ > BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ > zip:${PORTSDIR}/archivers/zip \ > gtar:${PORTSDIR}/archivers/gtar \ > - ${JDK13DIR}/bin/javac:${PORTSDIR}/java/linux-jdk13 \ > + ${JDK13DIR}/bin/javac:${PORTSDIR}/java/linux-sun-jdk13 \ > ${X11BASE}/lib/libMrm.a:${PORTSDIR}/x11-toolkits/open-motif > .if !defined(WITHOUT_PLUGIN) > BUILD_DEPENDS+= msgfmt:${PORTSDIR}/devel/gettext > ==8<====8<====8<====8<====8<====8<====8<====8<====8<====8<== > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 10:17: 4 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id A93FD37B406 for ; Thu, 13 Jun 2002 10:16:58 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id NAA56039 for ; Thu, 13 Jun 2002 13:16:53 -0400 (EDT) Message-ID: <3D08D350.862808B6@levindustries.com> Date: Thu, 13 Jun 2002 13:16:00 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: java@FreeBSD.ORG Subject: Re: java/jdk13: build depends on renamed port References: <200206131338.g5DDcF1M066809@wwweasel.geeksrus.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Alan Eldridge wrote: > linux-jdk13 was renamed to linux-sun-jdk13; the BUILD_DEPENDS in jdk13 was not > updated to reflect this changed. > > two effects: auto building of prereq won't (can't) happen, and linux-jdk13 is > seen as an orphaned (obsolete) package with no origin by pkgdb, portsclean, > etc. If my recent build of jdk13 completed without any errors, do I have anything to worry about? I have both a linux-sun-jdk13 and a linux-jdk13 in my ports directory, and they seem to be identical...I'm guessing this is why I didn't receive any errors? Thanks for your help, Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 10:22:23 2002 Delivered-To: freebsd-java@freebsd.org Received: from mgr3.xmission.com (mgr3.xmission.com [198.60.22.203]) by hub.freebsd.org (Postfix) with ESMTP id D99B937B400 for ; Thu, 13 Jun 2002 10:22:19 -0700 (PDT) Received: from mail by mgr3.xmission.com with spam-scanned (Exim 3.35 #1) id 17IYIc-0005h5-00; Thu, 13 Jun 2002 11:22:19 -0600 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 3.35 #1) id 17IYIb-0005gj-00; Thu, 13 Jun 2002 11:22:18 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id g5DHMDP92145; Fri, 14 Jun 2002 02:52:13 +0930 (CST) (envelope-from glewis) Date: Fri, 14 Jun 2002 02:52:13 +0930 From: Greg Lewis To: Josh Levine Cc: java@FreeBSD.ORG Subject: Re: java/jdk13: build depends on renamed port Message-ID: <20020614025212.A92128@misty.eyesbeyond.com> References: <200206131338.g5DDcF1M066809@wwweasel.geeksrus.net> <3D08D350.862808B6@levindustries.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3D08D350.862808B6@levindustries.com>; from joshl@levindustries.com on Thu, Jun 13, 2002 at 01:16:00PM -0400 X-Spam-Status: No, hits=-4.4 required=8.0 tests=IN_REP_TO version=2.20 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Jun 13, 2002 at 01:16:00PM -0400, Josh Levine wrote: > Alan Eldridge wrote: > > > linux-jdk13 was renamed to linux-sun-jdk13; the BUILD_DEPENDS in jdk13 was not > > updated to reflect this changed. > > > > two effects: auto building of prereq won't (can't) happen, and linux-jdk13 is > > seen as an orphaned (obsolete) package with no origin by pkgdb, portsclean, > > etc. > > If my recent build of jdk13 completed without any errors, do I have > anything to worry about? I have both a linux-sun-jdk13 and a > linux-jdk13 in my ports directory, and they seem to be identical...I'm > guessing this is why I didn't receive any errors? The ports have been copied, the old versions haven't been removed yet though (checking that everything works with the new structure presumably). A fix has been committed for the problem reported above, so thats one less dependency on the old ports :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 12: 2:46 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 16C6637B414 for ; Thu, 13 Jun 2002 12:02:37 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17IZml-000BQ1-00 for freebsd-java@freebsd.org; Thu, 13 Jun 2002 19:57:31 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5DIvV038520 for freebsd-java@freebsd.org; Thu, 13 Jun 2002 19:57:31 +0100 (BST) (envelope-from jcm) Date: Thu, 13 Jun 2002 19:57:31 +0100 From: j mckitrick To: freebsd-java@freebsd.org Subject: Native Java/Web Services 1.0 Message-ID: <20020613195731.A38496@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i X-Scanner: exiscan *17IZml-000BQ1-00*ZLZtRfP9zJY* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org First, has the native Java port been released by Sun? I searched the list, and all I found was a bunch of other people asking the same question. ;-) Also, has anyone tried installing the new Web Services Pack 1.0 from Sun? NOTE: Please CC me, as I am not currently subscribed. Thanks. jm -- My other computer is your windows box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 15:11:43 2002 Delivered-To: freebsd-java@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id D032F37B423 for ; Thu, 13 Jun 2002 15:11:39 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #6) id 17IckQ-000A4t-00 for freebsd-java@freebsd.org; Thu, 13 Jun 2002 23:07:18 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5DM7Iv39682 for freebsd-java@freebsd.org; Thu, 13 Jun 2002 23:07:18 +0100 (BST) (envelope-from jcm) Date: Thu, 13 Jun 2002 23:07:17 +0100 From: j mckitrick To: freebsd-java@freebsd.org Subject: Recommended servlet starter tools? Message-ID: <20020613230717.A39656@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi all, I just asked about web services, and I'm now trying to decide which jdk to use. Do I want the one from IBM, or the latest Linux jdk from Sun? NOTE: Please CC me, as I am not currently subscribed. Thanks. jm -- My other computer is your windows box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 15:46:15 2002 Delivered-To: freebsd-java@freebsd.org Received: from www.j-elite.com (www.j-elite.com [203.173.24.142]) by hub.freebsd.org (Postfix) with ESMTP id 169CD37B426 for ; Thu, 13 Jun 2002 15:46:01 -0700 (PDT) Received: from BLACKHAWK (www.j-elite.com [203.173.24.142]) by www.j-elite.com (Postfix) with SMTP id 5570621148; Fri, 14 Jun 2002 08:45:41 +1000 (EST) From: "Joe Shevland" To: "j mckitrick" , Subject: RE: Native Java/Web Services 1.0 Date: Fri, 14 Jun 2002 08:44:36 +1000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <20020613195731.A38496@dogma.freebsd-uk.eu.org> Importance: Normal Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > First, has the native Java port been released by Sun? I searched the > list, and all I found was a bunch of other people asking the same > question. ;-) Sun don't actually release the native port. There is a stable native JDK = 1.3.1 (see /usr/ports/java/jdk13) based on a lot of work and effort from = ppl like Nate Williams and Greg Lewis among others, albeit without the = HotSpot compiler. Though from recent postings and Bill Huey's intense = work, this sounds like its not too far off (wahoo ;)! Don't quote me on = any of that though, thats just what I've gleaned. Regards, Joe >=20 > Also, has anyone tried installing the new Web Services Pack 1.0 from > Sun? No, I spotted it on the Javasoft site but haven't looked into it. If its = pure Java it shouldn't be a prob. >=20 > NOTE: Please CC me, as I am not currently subscribed. Thanks. >=20 > jm > --=20 > My other computer is your windows box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 15:48:45 2002 Delivered-To: freebsd-java@freebsd.org Received: from www.j-elite.com (www.j-elite.com [203.173.24.142]) by hub.freebsd.org (Postfix) with ESMTP id 5104437B403 for ; Thu, 13 Jun 2002 15:48:38 -0700 (PDT) Received: from BLACKHAWK (www.j-elite.com [203.173.24.142]) by www.j-elite.com (Postfix) with SMTP id 91C1421149; Fri, 14 Jun 2002 08:48:21 +1000 (EST) From: "Joe Shevland" To: "j mckitrick" , Subject: RE: Recommended servlet starter tools? Date: Fri, 14 Jun 2002 08:47:16 +1000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: <20020613230717.A39656@dogma.freebsd-uk.eu.org> Importance: Normal Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > I just asked about web services, and I'm now trying to decide which = jdk > to use. Do I want the one from IBM, or the latest Linux jdk from Sun? /usr/ports/java/jdk13 I would recommend. Its the native one. Then, have a look at the Tomcat ports for servlet/JSP functionality... a = little learning curve (I think v4 is much easier to configure and = integrate). If you get stuck I'm happy to give you some pointers. 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 13 19: 1:32 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 75C1837B412 for ; Thu, 13 Jun 2002 19:01:28 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17IgOu-000HdU-00; Fri, 14 Jun 2002 03:01:20 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5E21Ju41207; Fri, 14 Jun 2002 03:01:19 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 03:01:18 +0100 From: j mckitrick To: Joe Shevland Cc: freebsd-java@freebsd.org Subject: Re: Recommended servlet starter tools? Message-ID: <20020614030118.A41033@dogma.freebsd-uk.eu.org> References: <20020613230717.A39656@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from jshevland@j-elite.com on Fri, Jun 14, 2002 at 08:47:16AM +1000 X-Scanner: exiscan *17IgOu-000HdU-00*/PqhR9gCJQY* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jun 14, 2002 at 08:47:16AM +1000, Joe Shevland wrote: | > I just asked about web services, and I'm now trying to decide which jdk | > to use. Do I want the one from IBM, or the latest Linux jdk from Sun? | | /usr/ports/java/jdk13 I would recommend. Its the native one. Is this the one that installs the Linux jdk, then bootstraps a native version? That's an insane amount of wear and tear. | Then, have a look at the Tomcat ports for servlet/JSP functionality... a little learning curve (I think v4 is much easier to configure and integrate). If you get stuck I'm happy to give you some pointers. Ah, excellent! That's exactly what I'm shooting for: a basic Tomcat setup to fool around with Web Services. I don't know much about running a web server, but from what I gather it shouldn't be to hard to get it going. I'll let you know how it goes. jm -- There are only 10 types of people in this world: those who understand binary, and those who don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 13 22:47: 2 2002 Delivered-To: freebsd-java@freebsd.org Received: from www.j-elite.com (www.j-elite.com [203.173.24.142]) by hub.freebsd.org (Postfix) with ESMTP id 13E3037B409 for ; Thu, 13 Jun 2002 22:46:55 -0700 (PDT) Received: by www.j-elite.com (Postfix, from userid 1000) id BA8B321149; Fri, 14 Jun 2002 15:44:00 +1000 (EST) To: jcm@FreeBSD-uk.eu.org, jshevland@j-elite.com Subject: Re: Recommended servlet starter tools? Cc: freebsd-java@freebsd.org In-Reply-To: <20020614030118.A41033@dogma.freebsd-uk.eu.org> Message-Id: <20020614054400.BA8B321149@www.j-elite.com> Date: Fri, 14 Jun 2002 15:44:00 +1000 (EST) From: jshevland@j-elite.com (Joe Shevland) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Yep, it needs the Linux JDK first... a necessary evil at this stage. Once built, you can remove it though. Tomcat is a good place to start for what you're after, it has its own internal web server for use that you don't need to configure much for. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 1: 9:21 2002 Delivered-To: freebsd-java@freebsd.org Received: from nwkea-mail-1.sun.com (nwkea-mail-1.sun.com [192.18.42.13]) by hub.freebsd.org (Postfix) with ESMTP id 3306037B405; Fri, 14 Jun 2002 01:09:16 -0700 (PDT) Received: from ha2sca-mail1.SFBay.Sun.COM ([129.145.155.62]) by nwkea-mail-1.sun.com (8.9.3+Sun/8.9.3) with ESMTP id BAA20072; Fri, 14 Jun 2002 01:09:16 -0700 (PDT) Received: from sr-cblr03-02 (sr-cblr03-02.India.Sun.COM [129.158.226.34]) by ha2sca-mail1.SFBay.Sun.COM (8.10.2+Sun/8.10.2/ENSMAIL,v2.1p1) with ESMTP id g5E88xH28595; Fri, 14 Jun 2002 01:08:59 -0700 (PDT) Date: Fri, 14 Jun 2002 01:08:59 -0700 (PDT) Message-ID: <16528806.1024042139300.JavaMail.ranjithm@ha2sca-mail1.sfbay.sun.com> From: Ranjith Mandala To: java-port@freebsd.org, freebsd-java@freebsd.org Subject: Re: (Review ID: 153607) HotSpot Virtual Machine Error: 11 Cc: Ranjith.Mandala@Sun.COM Mime-Version: 1.0 Content-Type: text/plain; charset=ISO646-US Content-Transfer-Encoding: 7bit X-Mailer: postEmail @(#) PostEmail.java 1.14 00/01/27 10:09:23 X-IM-Review-ID: 153607 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, This Bug Report was submitted from http://java.sun.com/cgi-bin/bugreport.cgi and is being forwarded to you on behalf of jmmpascual@indra.es. If you would like to respond. Please send an e-mail to the address listed at the end of this report. Regards, RM. ----------------- Original Bug Report------------------- category : java release : 1.3.1 subcategory : runtime type : bug synopsis : HotSpot Virtual Machine Error: 11 description : FULL PRODUCT VERSION : J2SE 1.3.1_01 J2SE 1.4 FULL OPERATING SYSTEM VERSION : FreeBSD 4.4 (running Linux binary compatibility) A DESCRIPTION OF THE PROBLEM : Both, Netbeans 3.3.1 and Forte for Java 3.0 CE install fine but when I try to launch them they crash when they have almost completed startup, after they are opening the default project and the error Mentionated before (HotSpot Virtual Machine error: 11) appears. It also happens with j2sdk 1.4 Maybe its an issue of permissions but I have checked that and found no reason for that. Also IO think it maybe an issue o some Kernel Option I have missed. I'm running StarOffice 5.2 and opera for linux without problems. Error id: 4F530E43505002D3 STEPS TO FOLLOW TO REPRODUCE THE PROBLEM : 1.Install netbeans or forte in FreeBSD 4.4 (or 4.x) under /usr/local 2.Launch netbeans or forte 3. ERROR MESSAGES/STACK TRACES THAT OCCUR : HotSpot virtual Machine error: 11 Error id: 4F530E43505002D3 REPRODUCIBILITY : This bug can be reproduced always. workaround : suggested_val : cust_name : Jos? Manuel Molina Pascual cust_email : jmmpascual@indra.es jdcid : keyword : webbug company : Indra Espacio S.A. hardware : x86 OSversion : Linux bugtraqID : 0 dateCreated : 2002-06-14 01:41:38.2 dateEvaluated : 2002-06-14 02:07:20.554 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 4:58:59 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id A0B1937B409 for ; Fri, 14 Jun 2002 04:58:55 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17Ipiu-0004cL-00 for freebsd-java@freebsd.org; Fri, 14 Jun 2002 12:58:36 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5EBwav44232 for freebsd-java@freebsd.org; Fri, 14 Jun 2002 12:58:36 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 12:58:36 +0100 From: j mckitrick To: freebsd-java@freebsd.org Subject: Can't find 1.3.1 patchset Message-ID: <20020614125836.A44215@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i X-Scanner: exiscan *17Ipiu-0004cL-00*qnLJ3JBetnk* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I was just at the eyesbeyond website, and the license click-through just takes me back to the jdk1.3 web page. Is there a trick to getting the patch archive? NOTE: Please CC me, as I am not currently subscribed. Thanks. jm -- My other computer is your windows box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 6:12:40 2002 Delivered-To: freebsd-java@freebsd.org Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by hub.freebsd.org (Postfix) with ESMTP id 7B4EC37B40E for ; Fri, 14 Jun 2002 06:12:34 -0700 (PDT) Received: from mail by mgr1.xmission.com with spam-scanned (Exim 3.35 #1) id 17IqsT-0007lV-00; Fri, 14 Jun 2002 07:12:33 -0600 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.35 #1) id 17IqsS-0007kq-00; Fri, 14 Jun 2002 07:12:33 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id g5EDCOg96016; Fri, 14 Jun 2002 22:42:24 +0930 (CST) (envelope-from glewis) Date: Fri, 14 Jun 2002 22:42:24 +0930 From: Greg Lewis To: j mckitrick Cc: freebsd-java@FreeBSD.ORG Subject: Re: Can't find 1.3.1 patchset Message-ID: <20020614224224.A96000@misty.eyesbeyond.com> References: <20020614125836.A44215@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020614125836.A44215@dogma.freebsd-uk.eu.org>; from jcm@FreeBSD-uk.eu.org on Fri, Jun 14, 2002 at 12:58:36PM +0100 X-Spam-Status: No, hits=-4.4 required=8.0 tests=IN_REP_TO version=2.20 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jun 14, 2002 at 12:58:36PM +0100, j mckitrick wrote: > I was just at the eyesbeyond website, and the license click-through just > takes me back to the jdk1.3 web page. Is there a trick to getting the > patch archive? There is no trick. Some proxies and browsers don't seem to handle things correctly though. I was able to download it yesterday with no problems. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 6:15:30 2002 Delivered-To: freebsd-java@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 99A3A37B410 for ; Fri, 14 Jun 2002 06:15:27 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #6) id 17IqvG-0001x5-00; Fri, 14 Jun 2002 14:15:26 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5EDFQT44665; Fri, 14 Jun 2002 14:15:26 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 14:15:25 +0100 From: j mckitrick To: Greg Lewis Cc: freebsd-java@FreeBSD.ORG Subject: Re: Can't find 1.3.1 patchset Message-ID: <20020614141525.B44574@dogma.freebsd-uk.eu.org> References: <20020614125836.A44215@dogma.freebsd-uk.eu.org> <20020614224224.A96000@misty.eyesbeyond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20020614224224.A96000@misty.eyesbeyond.com>; from glewis@eyesbeyond.com on Fri, Jun 14, 2002 at 10:42:24PM +0930 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jun 14, 2002 at 10:42:24PM +0930, Greg Lewis wrote: | On Fri, Jun 14, 2002 at 12:58:36PM +0100, j mckitrick wrote: | > I was just at the eyesbeyond website, and the license click-through just | > takes me back to the jdk1.3 web page. Is there a trick to getting the | > patch archive? | | There is no trick. Some proxies and browsers don't seem to handle things | correctly though. I was able to download it yesterday with no problems. Rats. I just tried it through a BSD/Netscape box, and a Win2k/Netscape box, and neither one works. After 'accept' it kicks me back. Should I just wait till I get home and try dialup? jm -- There are only 10 types of people in this world: those who understand binary, and those who don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 7:57:18 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 3E96837B406 for ; Fri, 14 Jun 2002 07:57:15 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17IsVf-000ARZ-00 for freebsd-java@freebsd.org; Fri, 14 Jun 2002 15:57:07 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5EEv7L45304 for freebsd-java@freebsd.org; Fri, 14 Jun 2002 15:57:07 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 15:57:07 +0100 From: j mckitrick To: freebsd-java@freebsd.org Subject: Which set of instructions? Message-ID: <20020614155707.B45259@dogma.freebsd-uk.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i X-Scanner: exiscan *17IsVf-000ARZ-00*xNL8iSCUbws* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've opened the doc webpage at freebsd.org for java and tomcat, and i also have the daemonnews article from march. It definitely makes sense to use the port instead of the 'long' way from the dnews article, but what about the rest? Which set of instructions works best? I'm also going to try openjit as well. NOTE: Please CC me, as I am not currently subscribed. Thanks. jm -- My other computer is your windows box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 8:14: 4 2002 Delivered-To: freebsd-java@freebsd.org Received: from plato.webprogrammers.net (plato.webprogrammers.net [204.221.75.12]) by hub.freebsd.org (Postfix) with ESMTP id DA54937B400 for ; Fri, 14 Jun 2002 08:13:57 -0700 (PDT) Received: from jstepkalaptop (heimdal.imaginet.com [206.146.4.1]) by plato.webprogrammers.net (8.12.3/8.12.3) with SMTP id g5EFC62k010766; Fri, 14 Jun 2002 10:12:06 -0500 (CDT) (envelope-from jstepka@webprogrammers.net) Message-ID: <008501c213b5$dd6187c0$d30310ac@mpls.imaginet.corp> From: "Justen Stepka" To: "j mckitrick" , References: <20020614155707.B45259@dogma.freebsd-uk.eu.org> Subject: Re: Which set of instructions? Date: Fri, 14 Jun 2002 10:12:08 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org For someone that isn't subscribed to the list you sure are posting a lot. :) I have recently written an article for O'Reilly (http://www.onjava.com) which details the basic history and configuration of the 1.3.1 native JDK for FreeBSD. It does not cover setting up OpenJIT, but it is very simple once you have the JDK in place. This article should be out in the next week and will be presented at the O'Reilly Open Source Convention (http://conferences.oreillynet.com/cs/os2002/create/e_sess?x-t=os2002_lt.cre ate.form). Justen Stepka ----- Original Message ----- From: "j mckitrick" To: Sent: Friday, June 14, 2002 9:57 AM Subject: Which set of instructions? > > I've opened the doc webpage at freebsd.org for java and tomcat, and i > also have the daemonnews article from march. It definitely makes sense > to use the port instead of the 'long' way from the dnews article, but > what about the rest? Which set of instructions works best? I'm also > going to try openjit as well. > > NOTE: Please CC me, as I am not currently subscribed. Thanks. > > jm > -- > My other computer is your windows box. > > 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 Jun 14 8:31:20 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id 507CD37B403 for ; Fri, 14 Jun 2002 08:31:17 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17It26-000Bto-00; Fri, 14 Jun 2002 16:30:38 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5EFUNX45559; Fri, 14 Jun 2002 16:30:23 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 16:30:23 +0100 From: j mckitrick To: Justen Stepka Cc: freebsd-java@FreeBSD.ORG Subject: Re: Which set of instructions? Message-ID: <20020614163023.D45259@dogma.freebsd-uk.eu.org> References: <20020614155707.B45259@dogma.freebsd-uk.eu.org> <008501c213b5$dd6187c0$d30310ac@mpls.imaginet.corp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <008501c213b5$dd6187c0$d30310ac@mpls.imaginet.corp>; from jstepka@webprogrammers.net on Fri, Jun 14, 2002 at 10:12:08AM -0500 X-Scanner: exiscan *17It26-000Bto-00*5ik0sNZGuUw* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Jun 14, 2002 at 10:12:08AM -0500, Justen Stepka wrote: | For someone that isn't subscribed to the list you sure are posting a lot. :) I'm just getting my feet wet. Also, I have mutt set up to add that sig so that every BSD list I post to gets that tagline, just in case. | I have recently written an article for O'Reilly (http://www.onjava.com) | which details the basic history and configuration of the 1.3.1 native JDK | for FreeBSD. It does not cover setting up OpenJIT, but it is very simple | once you have the JDK in place. Great, I'll look for it! jm -- There are only 10 types of people in this world: those who understand binary, and those who don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 9:18:27 2002 Delivered-To: freebsd-java@freebsd.org Received: from serenity.mcc.ac.uk (serenity.mcc.ac.uk [130.88.200.93]) by hub.freebsd.org (Postfix) with ESMTP id 2AE1737B445 for ; Fri, 14 Jun 2002 09:18:12 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by serenity.mcc.ac.uk with esmtp (Exim 2.05 #6) id 17Itm7-0006hF-00; Fri, 14 Jun 2002 17:18:11 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5EGI9245999; Fri, 14 Jun 2002 17:18:09 +0100 (BST) (envelope-from jcm) Date: Fri, 14 Jun 2002 17:18:09 +0100 From: j mckitrick To: Joe Shevland , freebsd-java@freebsd.org Subject: Re: Recommended servlet starter tools? Message-ID: <20020614171809.A45977@dogma.freebsd-uk.eu.org> References: <20020614030118.A41033@dogma.freebsd-uk.eu.org> <20020614054400.BA8B321149@www.j-elite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20020614054400.BA8B321149@www.j-elite.com>; from jshevland@j-elite.com on Fri, Jun 14, 2002 at 03:44:00PM +1000 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hey Joe, I have everything installed, including OpenJIT. Question: my poor little P2-266 is pegged to the limit when I run tomcat and try to access the home page. Is this normal? Also, accessing http://localhost:8080 never shows anything. It seems to be a new way of turning on my CPU fan. ;-) jm -- There are only 10 types of people in this world: those who understand binary, and those who don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 9:28:30 2002 Delivered-To: freebsd-java@freebsd.org Received: from yitiya.pair.com (yitiya.pair.com [209.68.2.97]) by hub.freebsd.org (Postfix) with SMTP id 9047F37B416 for ; Fri, 14 Jun 2002 09:28:18 -0700 (PDT) Received: (qmail 10942 invoked by uid 3068); 14 Jun 2002 16:28:17 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 14 Jun 2002 16:28:17 -0000 Date: Fri, 14 Jun 2002 09:28:17 -0700 (PDT) From: Nick Johnson X-Sender: To: Subject: shujit with Resin Message-ID: X-what-happen: someone set up us the bomb X-Message-Flags: Spatula MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Has anyone been successful in getting Resin (www.caucho.com) to run with shujit? I'm able to get it to handle about 2 requests, and then it goes SIG11 on the third. Here's the error, many bits removed for cleanliness. It looks like things went bad upon receipt of a signal. If anyone is very clever with these things and would like the full dump and the core file, I'd be happy to pass those along. I paste this on the off chance that someone may have seen this before and knows a knob to turn that might help. FATAL: Signal 11 occurred out of JIT compiled code. SS: 002f, CS: 001f, DS: 002f, ES: 002f, FS: 002f, GS: 002f EAX: 00000000, ECX: 00000002, EDX: 00000000, EBX: 1d3738c8 ESI: 098e4764, EDI: 18e88898 ESP: 1e4b2534, EBP: 1e4b255c EIP: 1d36223f (ESP+4): 1e4b25b8, (ESP): 1d3738c8 (EBP+4): 0a763167 (retrun addr.) (EIP): 8b 04 90 c1 e0 02 8b 4d f0 8b 44 08 04 89 45 fc trapno: 0c method not found by EIP. SIGSEGV 11* segmentation violation Full thread dump Classic VM (1.3.1-p6-spatula-020604-17:43, green threads): "tcpConnection-80-3" (TID:0x18e72e00, sys_thread_t:0xa674a80, state:CW) prio=5 at java.net.SocketInputStream.socketRead(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java, Compiled Code) [snip] at java.lang.Thread.run(Thread.java:484) "tcpConnection-80-2" (TID:0x18e77178, sys_thread_t:0xa657a80, state:R) prio=5 at javax.servlet.ServletResponseWrapper.getCharacterEncoding(ServletResponseWrapper.java, Compiled Code) [snip] at java.lang.Thread.run(Thread.java:484) "tcpConnection-6802-1" (TID:0x18ea4490, sys_thread_t:0x9731c80, state:CW) prio=5 at java.lang.Object.wait(Native Method) [snip] at java.lang.Thread.run(Thread.java:484) "tcp-accept-6802" (TID:0x18e91588, sys_thread_t:0x9658a80, state:CW) prio=5 at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421) at java.net.ServerSocket.implAccept(ServerSocket.java:243) at java.net.ServerSocket.accept(ServerSocket.java:222) [snip] at java.lang.Thread.run(Thread.java:484) "tcp-accept-80" (TID:0x18e92c18, sys_thread_t:0x9658280, state:CW) prio=5 at java.lang.Object.wait(Native Method) [snip] at java.lang.Thread.run(Thread.java:484) "tcp-accept-80" (TID:0x18e92bf0, sys_thread_t:0x963fe80, state:CW) prio=5 at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421) at java.net.ServerSocket.implAccept(ServerSocket.java:243) at java.net.ServerSocket.accept(ServerSocket.java:222) [snip] at com.caucho.server.TcpServer.run(TcpServer.java, Compiled Code) at java.lang.Thread.run(Thread.java:484) "resin-cron" (TID:0x18ea9950, sys_thread_t:0x8d99680, state:CW) prio=5 at java.lang.Thread.sleep(Native Method) at com.caucho.util.Cron$CronThread.run(Cron.java, Compiled Code) "resin-alarm" (TID:0x18e96bd8, sys_thread_t:0x8a0de80, state:CW) prio=5 at java.lang.Thread.sleep(Native Method) at com.caucho.util.Alarm$AlarmThread.run(Alarm.java, Compiled Code) "Finalizer" (TID:0x18e7a528, sys_thread_t:0x80d4080, state:CW) prio=8 at java.lang.Object.wait(Native Method) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java, Compiled Code) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java, Compiled Code) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162) "Reference Handler" (TID:0x18e7a300, sys_thread_t:0x80b6480, state:CW) prio=10 at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java, Compiled Code) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110) "Signal dispatcher" (TID:0x18e7a330, sys_thread_t:0x80b6280, state:CW) prio=5 "main" (TID:0x18e7a1b0, sys_thread_t:0x8053080, state:CW) prio=5 at java.lang.Thread.sleep(Native Method) [snip] Monitor Cache Dump: com.caucho.server.TcpServer$StartThread@18E91EE8/19029670: Waiting to be notified: "tcp-accept-6802" (0x9684280) java.net.PlainSocketImpl@18E93228/19028140: owner "tcp-accept-6802" (0x9658a80) 1 entry java.lang.ref.ReferenceQueue$Lock@18E7A540/18EB0478: Waiting to be notified: "Finalizer" (0x80d4080) java.lang.ref.Reference$Lock@18E7A310/18EAFF98: Waiting to be notified: "Reference Handler" (0x80b6480) com.caucho.server.TcpServer$StartThread@18E92BB8/19028878: Waiting to be notified: "tcp-accept-80" (0x9658280) java.lang.Object@18E92B40/19028788: Waiting to be notified: "tcpConnection-6802-1" (0x9731c80) java.net.PlainSocketImpl@18E93720/19023278: owner "tcp-accept-80" (0x963fe80) 1 entry java.lang.Object@18E93138/19027F08: Waiting to be notified: "tcpConnection-80-0" (0x9718480) Registered Monitor Dump: utf8 hash table: JNI pinning lock: JNI global reference lock: BinClass lock: Class linking lock: System class loader lock: Code rewrite lock: Heap lock: Monitor cache lock: owner "tcpConnection-80-2" (0xa657a80) 1 entry Dynamic loading lock: Monitor IO lock: User signal monitor: Waiting to be notified: "Signal dispatcher" (0x80b6280) Child death monitor: I/O monitor: Alarm monitor: Waiting to be notified: (0x8053280) Thread queue lock: owner "tcpConnection-80-2" (0xa657a80) 1 entry Monitor registry: owner "tcpConnection-80-2" (0xa657a80) 1 entry SIGABRT 6* abort (generated by abort(3) routine) -- "The aptly-named morons.org is an obscenity-laced screed..." -- Robert P. Lockwood, Catholic League director of research Nick Johnson, version 2.0 http://www.spatula.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 16:43:50 2002 Delivered-To: freebsd-java@freebsd.org Received: from orca.seaple.icc.ne.jp (orca.seaple.icc.ne.jp [210.170.8.81]) by hub.freebsd.org (Postfix) with ESMTP id 8C20F37B414 for ; Fri, 14 Jun 2002 16:43:46 -0700 (PDT) Received: from firstbase.westbay.fa.jp (cr1-199-037.seaple.icc.ne.jp [202.215.199.37]) by orca.seaple.icc.ne.jp (8.9.3/3.7W-000828) id IAA16173; Sat, 15 Jun 2002 08:37:24 +0900 (JST) Content-Type: text/plain; charset="iso-8859-1" From: Michael Westbay To: j mckitrick , Joe Shevland , freebsd-java@FreeBSD.ORG Subject: Re: Recommended servlet starter tools? Date: Sat, 15 Jun 2002 08:39:04 +0900 X-Mailer: KMail [version 1.4] References: <20020614030118.A41033@dogma.freebsd-uk.eu.org> <20020614054400.BA8B321149@www.j-elite.com> <20020614171809.A45977@dogma.freebsd-uk.eu.org> In-Reply-To: <20020614171809.A45977@dogma.freebsd-uk.eu.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200206150839.04380.westbay@seaple.icc.ne.jp> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org mckitrick-san wrote: > Question: my poor little P2-266 is pegged to the limit when I run > tomcat and try to access the home page. Is this normal? Add memory and/or eliminate X and you should be fine. I have a 200MHz Fr= eeBSD=20 with Tomcat 4 that actually out performs P-500's with Win2000/Tomcat in s= ome=20 cases. The CPU rev is Netscape. Once I started accessing the server from a diff= erent=20 computer, that 200MHz machine really started to fly. > Also, accessing http://localhost:8080 never shows anything. It seems t= o > be a new way of turning on my CPU fan. ;-) You took previous advice and are using the Tomcat4 port, right? Well, To= mcat=20 4 is setup to use port 8180 for the stand-alone server, not port 8080. S= ee=20 $TOMCAT_HOME/conf/server.xml for a detailed description of what ports are= =20 being used. Hope this helps. --=20 Michael Westbay Work: Beacon-IT http://www.beacon-it.co.jp/ Home: http://www.seaple.icc.ne.jp/~westbay Commentary: http://www.japanesebaseball.com/forum/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 17:31: 5 2002 Delivered-To: freebsd-java@freebsd.org Received: from ns3.ideathcare.com (mail.allneo.com [216.185.96.68]) by hub.freebsd.org (Postfix) with SMTP id A323A37B41E for ; Fri, 14 Jun 2002 17:30:53 -0700 (PDT) Received: (qmail 44648 invoked by uid 85); 15 Jun 2002 00:33:03 -0000 Received: from jps@funeralexchange.com by ns3.ideathcare.com with qmail-scanner-1.03 (uvscan: v4.1.40/v4121. . Clean. Processed in 0.168561 secs); 15 Jun 2002 00:33:03 -0000 Received: from unknown (HELO funeralexchange.com) (216.185.99.195) by mail.allneo.com with SMTP; 15 Jun 2002 00:33:03 -0000 Received: from 66.171.47.53 (SquirrelMail authenticated user jps@funeralexchange.com) by webmail.allneo.com with HTTP; Fri, 14 Jun 2002 19:32:32 -0500 (CDT) Message-ID: <3887.66.171.47.53.1024101152.squirrel@webmail.allneo.com> Date: Fri, 14 Jun 2002 19:32:32 -0500 (CDT) Subject: Apache 1.3_Modssl + Warp + Tomcat problems From: To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal X-Mailer: SquirrelMail (version 1.2.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org # Problem Tomcat + Apache Mod_SSL using Warp do not cooperate. # URLs to view to see the error happen. https://www.funeralbiz.com/ASIMAS/funeralbiz/product.jsp?domain_id=39&categoryID=90 Add a few items to your shopping cart and then proceed to check out. If you are prompted for a CC# please use 4111 1111 1111 1111 with no spaces. the payment system is not setup right now so a false CC# will work properly once the you fill out the forms for the shipping & billing details (if you make it that far without it crashing) you will have the application crash on you somewhere inbetween there. This problem ONLY occurs under SSL and it works flawlessly under plain HTTP. I have had it work fine a few times under SSL but it crashes more times then it is successfull. Do i need to setup anything specail in my server.xml for the SSL connections to all be handled by apache and then have all the jsp pages be handled by tomcat and passed back to apache to then send it back to the client over SSL . I am using a pretty much stock server.xml file the only things i have changed is the enable lookups to false and upped the max connections. If someone out there can give me any information on how to resolve this problem that would be great. I can send you more details or snips from the logs if you would like just please tell me what you need. # Software versions Linux Jarkata Tomcat 4.03LE Binary Linux j2sdk1.4 Binary mod_webapp.so built from source on FreeBSD 4.5 #uname -a output FreeBSD mortus.ideathcare.com 4.6-RC FreeBSD 4.6-RC #4: Tue Jun 4 22:23:57 CDT 2002 root@mortus.ideathcare.com:/usr/obj/usr/src/sys/MORTUS i386 # Java -version output java version "1.4.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92) Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode) # file output [root@mortus]/usr/local/jdk1.4.1/bin% file java java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped # ldd output [root@mortus]/usr/local/jdk1.4.1/bin% ldd java java: libpthread.so.0 => /lib/libpthread.so.0 (0x28062000) libdl.so.2 => /lib/libdl.so.2 (0x28074000) libc.so.6 => /lib/libc.so.6 (0x28077000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x2804d000) #apache version from ports apache+mod_ssl-1.3.24+2.8.8 The Apache 1.3 webserver with SSL/TLS functionality # linux base linux_base-6.1_1 Thanks Jeremy Suo-Anttila jps@funeralexchange.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 14 21: 0: 4 2002 Delivered-To: freebsd-java@freebsd.org Received: from ns3.ideathcare.com (mail.allneo.com [216.185.96.68]) by hub.freebsd.org (Postfix) with SMTP id 43D2837B41F for ; Fri, 14 Jun 2002 20:59:56 -0700 (PDT) Received: (qmail 51552 invoked by uid 85); 15 Jun 2002 04:03:50 -0000 Received: from jps@funeralexchange.com by ns3.ideathcare.com with qmail-scanner-1.03 (uvscan: v4.1.40/v4121. . Clean. Processed in 0.173019 secs); 15 Jun 2002 04:03:50 -0000 Received: from unknown (HELO funeralexchange.com) (216.185.99.195) by mail.allneo.com with SMTP; 15 Jun 2002 04:03:50 -0000 Received: from 66.171.47.53 (SquirrelMail authenticated user jps@funeralexchange.com) by webmail.allneo.com with HTTP; Fri, 14 Jun 2002 23:03:18 -0500 (CDT) Message-ID: <4834.66.171.47.53.1024113798.squirrel@webmail.allneo.com> Date: Fri, 14 Jun 2002 23:03:18 -0500 (CDT) Subject: Re: Apache 1.3_Modssl + Warp + Tomcat problems From: To: In-Reply-To: <009201c21413$01843190$0100a8c0@woodle> References: <3887.66.171.47.53.1024101152.squirrel@webmail.allneo.com> <009201c21413$01843190$0100a8c0@woodle> X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Cc: X-Mailer: SquirrelMail (version 1.2.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Yes i have but correct me if i am wrong but i thought you only needed to use that connector if you where using a stand alone tomcat server without the warp + apache front end. thanks Jps > Have you seen this bit in the server.xml file? > > > > > className="org.apache.tomcat.service.PoolTcpConnector"> > value="org.apache.tomcat.service.connector.Ajp12ConnectionHandler"/> > > > > ----- Original Message ----- > From: > To: > Sent: Friday, June 14, 2002 5:32 PM > Subject: Apache 1.3_Modssl + Warp + Tomcat problems > > >> # Problem Tomcat + Apache Mod_SSL using Warp do not cooperate. >> >> # URLs to view to see the error happen. >> > https://www.funeralbiz.com/ASIMAS/funeralbiz/product.jsp?domain_id=39&catego> ryID=90 >> Add a few items to your shopping cart and then proceed to check out. >> If you are prompted for a CC# please use 4111 1111 1111 1111 with no >> spaces. the payment system is not setup right now so a false CC# will >> work properly once the you fill out the forms for the shipping & >> billing details (if you make it that far without it crashing) you will >> have the application crash on you somewhere inbetween there. This >> problem ONLY occurs under SSL and it works flawlessly under plain >> HTTP. I have had it work fine a few times under SSL but it crashes >> more times then it is successfull. >> Do i need to setup anything specail in my server.xml for the SSL >> connections to all be handled by apache and then have all the jsp >> pages be handled by tomcat and passed back to apache to then send it >> back to the client over SSL . I am using a pretty much stock >> server.xml file the only things i have changed is the enable lookups >> to false and upped the max connections. If someone out there can give >> me any information on how to resolve this problem that would be great. >> I can send you more details or snips from the logs if you would like >> just please tell me what you need. >> >> # Software versions >> Linux Jarkata Tomcat 4.03LE Binary >> Linux j2sdk1.4 Binary >> mod_webapp.so built from source on FreeBSD 4.5 >> >> #uname -a output >> FreeBSD mortus.ideathcare.com 4.6-RC FreeBSD 4.6-RC #4: Tue Jun 4 >> 22:23:57 CDT 2002 >> root@mortus.ideathcare.com:/usr/obj/usr/src/sys/MORTUS i386 >> # Java -version output >> java version "1.4.0" >> Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92) >> Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode) >> >> # file output >> [root@mortus]/usr/local/jdk1.4.1/bin% file java >> java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), >> dynamically linked (uses shared libs), stripped >> # ldd output >> [root@mortus]/usr/local/jdk1.4.1/bin% ldd java >> java: >> libpthread.so.0 => /lib/libpthread.so.0 (0x28062000) >> libdl.so.2 => /lib/libdl.so.2 (0x28074000) >> libc.so.6 => /lib/libc.so.6 (0x28077000) >> /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x2804d000) >> >> #apache version from ports >> apache+mod_ssl-1.3.24+2.8.8 The Apache 1.3 webserver with SSL/TLS >> functionality >> # linux base >> linux_base-6.1_1 >> >> Thanks >> >> Jeremy Suo-Anttila >> jps@funeralexchange.com >> >> >> >> 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 Jun 14 21:33:52 2002 Delivered-To: freebsd-java@freebsd.org Received: from attila.stevens-tech.edu (attila.stevens-tech.edu [155.246.14.11]) by hub.freebsd.org (Postfix) with ESMTP id 42C8A37B423 for ; Fri, 14 Jun 2002 21:33:48 -0700 (PDT) Received: from levindustries.com (jlevine-1.u05.stevens-tech.edu [155.246.211.36]) by attila.stevens-tech.edu (SGI-8.9.3/8.9.3/7) with ESMTP id AAA11483 for ; Sat, 15 Jun 2002 00:33:47 -0400 (EDT) Message-ID: <3D0AC36D.C72E688B@levindustries.com> Date: Sat, 15 Jun 2002 00:32:45 -0400 From: Josh Levine X-Mailer: Mozilla 4.77 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@freebsd.org Subject: JAVA+PHP+Apache on FreeBSD - Success! Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Searching the archives I noticed people have asked questions about this in the past, so I figured I'd post a few notes on how I got it working... - Build jdk13 with native threads (make -DWITH_NATIVE_THREADS) - Build Apache with POSIX threads (export LDFLAGS="-pthread -lc_r") - Add /usr/local/jdk1.3.1/jre/lib/i386 to ldconfig_paths in /etc/rc.conf (make sure to copy over the existing paths from /etc/defaults/rc.conf) - Build PHP with Java (--with-java=/usr/local/jdk1.3.1) - Rename the java.so file that the PHP build created to libphp_java.so and make sure it is in the extensions directory definie in the php.ini file Contents of the [Java] section of my php.ini: [Java] java.class.path = /usr/local/lib/php/php_java.jar:/usr/local/jdk1.3.1/jre/lib/rt.jar java.home = /usr/local/jdk1.3.1 java.library = /usr/local/jdk1.3.1/jre/lib/i386/classic/libjvm.so java.library.path = /usr/local/lib/php/extensions:/usr/local/jdk1.3.1/jre/lib/i386:/usr/local/jdk1.3.1/jre/lib/i386/native_threads extension=libphp_java.so I hope this helps someone out, Josh Levine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 6:40:27 2002 Delivered-To: freebsd-java@freebsd.org Received: from mx1.aist.go.jp (mx1.aist.go.jp [150.29.246.133]) by hub.freebsd.org (Postfix) with ESMTP id 8222F37B40F for ; Sat, 15 Jun 2002 06:40:09 -0700 (PDT) Received: from rpsmtp1.aist.go.jp by mx1.aist.go.jp with ESMTP id g5FDdtH14405; Sat, 15 Jun 2002 22:39:55 +0900 (JST) env-from (shudo@computer.org) Received: from mail03.aist.go.jp by rpsmtp1.aist.go.jp with ESMTP id g5FDdtm29914; Sat, 15 Jun 2002 22:39:55 +0900 (JST) env-from (shudo@computer.org) Received: from aist.go.jp by mail03.aist.go.jp with ESMTP id g5FDds520463; Sat, 15 Jun 2002 22:39:54 +0900 (JST) env-from (shudo@computer.org) Date: Sat, 15 Jun 2002 22:39:54 +0900 (JST) Message-Id: <20020615.223954.337812685.shudoh@localhost> To: freebsd@spatula.net Cc: freebsd-java@FreeBSD.ORG Subject: Re: shujit with Resin From: shudo@computer.org In-Reply-To: References: X-Mailer: Mew version 2.1 on XEmacs 21.4.6 (Common Lisp) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Sat_Jun_15_22:39:54_2002_721)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----Next_Part(Sat_Jun_15_22:39:54_2002_721)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi Nick, Thanks for your report. Nick Johnson wrote: > Has anyone been successful in getting Resin (www.caucho.com) to run with > shujit? I'm able to get it to handle about 2 requests, and then it goes > SIG11 on the third. > FATAL: Signal 11 occurred out of JIT compiled code. Resin 2.1.2 works well on my Linux box with shuJIT and Blackdown JDK 1.3.1_02b. I suspect a bug of FreeBSD JDK because of it and the error message you gave. I have reported the bug to this list once (see the attachment). It will be hard to track down. The work-around for the bug had been enhanced toward shuJIT 0.7.12 and it is automatically turned on for the FreeBSD JDK 1.3.1. I hope you never see the bug if you use shuJIT 0.7.12 or later. Anyway, I need more information such as the version number of shuJIT and Resin. I will make investigation, but now I do not have FreeBSD machines I can login to because those are shut off. Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ ----Next_Part(Sat_Jun_15_22:39:54_2002_721)-- Content-Type: Message/Rfc822 Content-Transfer-Encoding: 7bit Content-Disposition: inline Received: from rpsmtp2.aist.go.jp by mail05.aist.go.jp with ESMTP id g2E1hPr15040 for ; Thu, 14 Mar 2002 10:43:26 +0900 (JST) env-from (owner-freebsd-java@FreeBSD.ORG) Received: from mx2.aist.go.jp by rpsmtp2.aist.go.jp with ESMTP id g2E1hPi06296 for ; Thu, 14 Mar 2002 10:43:25 +0900 (JST) env-from (owner-freebsd-java@FreeBSD.ORG) Received: from clement.computer.org by mx2.aist.go.jp with ESMTP id g2E1hLN24157 for ; Thu, 14 Mar 2002 10:43:22 +0900 (JST) env-from (owner-freebsd-java@FreeBSD.ORG) Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by clement.computer.org (Switch-2.1.1/Switch-2.1.1) with ESMTP id U2E124X411992 for ; Wed, 13 Mar 2002 17:40:33 -0800 Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 9D4E655944; Wed, 13 Mar 2002 17:39:42 -0800 (PST) (envelope-from owner-freebsd-java@FreeBSD.ORG) Received: by hub.freebsd.org (Postfix, from userid 538) id 3854037B417; Wed, 13 Mar 2002 17:39:41 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 9B0552E8081; Wed, 13 Mar 2002 17:39:40 -0800 (PST) Received: by hub.freebsd.org (bulk_mailer v1.12); Wed, 13 Mar 2002 17:39:40 -0800 Delivered-To: freebsd-java@freebsd.org Received: from cafe.muraoka.info.waseda.ac.jp (cafe.muraoka.info.waseda.ac.jp [133.9.68.49]) by hub.freebsd.org (Postfix) with ESMTP id 61BD837B400 for ; Wed, 13 Mar 2002 17:39:14 -0800 (PST) Received: from muraoka.info.waseda.ac.jp (shudoh@localhost [127.0.0.1]) by cafe.muraoka.info.waseda.ac.jp (8.9.1a/3.7W) with ESMTP id KAA32180 for ; Thu, 14 Mar 2002 10:38:55 +0900 Message-Id: <200203140138.KAA32180@cafe.muraoka.info.waseda.ac.jp> To: java@FreeBSD.ORG From: shudo@computer.org Subject: shuJIT 0.7.11 Date: Thu, 14 Mar 2002 10:38:55 +0900 Sender: owner-freebsd-java@FreeBSD.ORG List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Precedence: bulk Content-Length: 2156 Hi all, I have released shuJIT 0.7.11. http://www.shudo.net/jit/ Two problem reports came to me last month from Mr. Mike Gratton and Mr. Maxim Sobolev. Now the newly released version of shuJIT run Xindice 1.0rc1 and jEdit 3.2.2 well. I'd appreciate any report on this version of shuJIT. Two bugs of shuJIT and one possible bug of FreeBSD 1.3.1-p6 came to the front of me. Bugs of shuJIT were kinds of Java stack destruction and those could be fixed. But, the last bug seems to be in JDK 1.3.1-p6, not shuJIT. I implemented a nasty workaround for it. It is automatically enabled if the shuJIT is compiled with 1.3.1-p6. See the macro named `WORKAROUND_FOR_FREEBSD_131P6' in config.h. The version of JDK seems to call JIT-compiled native code as the JDK leaves SIGTRAP signal blocked. It's possible that other signals are also kept blocked. Native code generated by shuJIT causes SIGTRAP intentionally for some reasons, but the signal is not delivered until it is unblocked by sigprocmask(2). Just when unblocked, it is delivered and the timing of the delivery is different from one intended by shuJIT (and me). We can reproduce the problem by following the below instruction: - Configure the shuJIT. % ./configure - Comment out the following line in config.h. #define WORKAROUND_FOR_FREEBSD_131P6 1 - Change `#define' to `#undef' in the line as follows in compiler.h. #define METHOD_INLINING Now, shuJIT with JDK 1.3.1-p6 aborts. If we enable the workaround indicated by the macro in config.h, shuJIT works correctly. Then, we can confirm the workaround implemented in runtime.c is effective. I am not sure there is this problem in the previous releases of JDK 1.3.1 and 1.2.X. If there is, I have to change the way to judge whether the workaround should be enabled or not. I'm running FreeBSD 4.5-STABLE about early in March. Note that the signal related problem mentioned above does not occur on Linux, at least with Blackdown JDK 1.3.1-02a-FCS. Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message ----Next_Part(Sat_Jun_15_22:39:54_2002_721)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 7:55:19 2002 Delivered-To: freebsd-java@freebsd.org Received: from yitiya.pair.com (yitiya.pair.com [209.68.2.97]) by hub.freebsd.org (Postfix) with SMTP id 3C88837B42F for ; Sat, 15 Jun 2002 07:55:15 -0700 (PDT) Received: (qmail 94948 invoked by uid 3068); 15 Jun 2002 14:55:14 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 15 Jun 2002 14:55:14 -0000 Date: Sat, 15 Jun 2002 07:55:14 -0700 (PDT) From: X-Sender: To: Cc: Subject: Re: shujit with Resin In-Reply-To: <20020615.223954.337812685.shudoh@localhost> Message-ID: X-what-happen: someone set up us the bomb X-Message-Flags: Spatula MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks for your reply. I should have mentioned the versions earlier. I'm using shuJIT 0.7.12 built using the FreeBSD ports collection, the native FreeBSD JDK 1.3.1, and Resin 2.1.2, although the problem also turned up in Resin 2.1.0. I may be able to provide you a FreeBSD environment to hack around in, but it may take me a few days to get things set up. On Sat, 15 Jun 2002 shudo@computer.org wrote: > Hi Nick, > > Thanks for your report. > > Nick Johnson wrote: > > > Has anyone been successful in getting Resin (www.caucho.com) to run with > > shujit? I'm able to get it to handle about 2 requests, and then it goes > > SIG11 on the third. > > > FATAL: Signal 11 occurred out of JIT compiled code. > > Resin 2.1.2 works well on my Linux box with shuJIT and Blackdown JDK > 1.3.1_02b. I suspect a bug of FreeBSD JDK because of it and the error > message you gave. I have reported the bug to this list once (see the > attachment). It will be hard to track down. > > The work-around for the bug had been enhanced toward shuJIT 0.7.12 and > it is automatically turned on for the FreeBSD JDK 1.3.1. I hope you > never see the bug if you use shuJIT 0.7.12 or later. > > Anyway, I need more information such as the version number of shuJIT > and Resin. I will make investigation, but now I do not have FreeBSD > machines I can login to because those are shut off. > > Kazuyuki Shudo shudo@computer.org http://www.shudo.net/ > -- "The aptly-named morons.org is an obscenity-laced screed..." -- Robert P. Lockwood, Catholic League director of research Nick Johnson, version 2.0 http://www.spatula.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 8:12: 4 2002 Delivered-To: freebsd-java@freebsd.org Received: from ns.gddsn.org.cn (ns.gddsn.org.cn [210.21.6.33]) by hub.freebsd.org (Postfix) with ESMTP id 3839837B43C for ; Sat, 15 Jun 2002 08:11:53 -0700 (PDT) Received: from mail.gddsn.org.cn (gw [210.21.6.34]) by ns.gddsn.org.cn (Postfix) with ESMTP id 076AF265 for ; Sat, 15 Jun 2002 23:11:44 +0800 (CST) Message-ID: <3D0B592F.7040502@mail.gddsn.org.cn> Date: Sat, 15 Jun 2002 23:11:43 +0800 From: Huang wen hui User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.0) Gecko/20020614 X-Accept-Language: zh-cn, zh-tw, en-us MIME-Version: 1.0 To: java@freebsd.org Subject: java_g coredump when using jb6/jb7+linux 7.1 emulator under FreeBSD 4.6 release Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hi, I use JBuilder6/7 under FreeBSD 4.6, and JDK is native JDK1.3.1-p6 not linux-jdk1.3.1. Because jbuilder7 startup program and cvs module is linux binary exec files. so I use Linux7.1 emulator. Sometime JBuilder coredump (signal 6) after using cvs module in IDE. I try to using java_g to startup JBuilder. But JBuilder could not startup if using java_g. Does native jdk1.3.1-p6 have problem with debug option ? #java -version java version "1.3.1-p6" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-p6-root-020411-08:24) Classic VM (build 1.3.1-p6-root-020411-08:16, green threads, nojit) JBuilder 7 Enterprise Copyright (c) 1996-2002 Borland Software Corporation. All rights reserved. *** panic: "../../../src/share/javavm/runtime/classresolver.c", line 1385: assertion failure Program received signal SIGABRT, Aborted. 0x180ba7b4 in kill () from /usr/lib/libc.so.4 (gdb) bt #0 0x180ba7b4 in kill () from /usr/lib/libc.so.4 #1 0x180fab26 in abort () from /usr/lib/libc.so.4 #2 0x181796e9 in Abort () at ../../../src/share/javavm/runtime/interpreter.c:1449 #3 0x181b6f21 in panic (format=0x181c1960 "\"%s\", line %d: assertion failure\n") at ../../../src/share/javavm/runtime/util.c:126 #4 0x181665bd in PrepareInterfaces (cb=0x19796ed8) at ../../../src/share/javavm/runtime/classresolver.c:1385 #5 0x1816739c in PrepareClass (cb=0x19796ed8) at ../../../src/share/javavm/runtime/classresolver.c:1833 #6 0x181668c4 in LinkClass (cb=0x19796ed8) at ../../../src/share/javavm/runtime/classresolver.c:1489 #7 0x181667a1 in LinkClass (cb=0x19796638) at ../../../src/share/javavm/runtime/classresolver.c:1448 #8 0x181667a1 in LinkClass (cb=0x19795d90) at ../../../src/share/javavm/runtime/classresolver.c:1448 #9 0x181667a1 in LinkClass (cb=0x19795558) at ../../../src/share/javavm/runtime/classresolver.c:1448 #10 0x181667a1 in LinkClass (cb=0x19794d20) at ../../../src/share/javavm/runtime/classresolver.c:1448 #11 0x1816a25c in InitClass (cb=0x19794d20) at ../../../src/share/javavm/runtime/classruntime.c:1065 #12 0x18167fba in FindClassFromClassLoader2 (ee=0x89d1404, name=0x25b9dcc4 "org/apache/xerces/dom/DocumentImpl", resolve=TRUE, loader=0x1954d780, throwError=FALSE, pd=0x0) at ../../../src/share/javavm/runtime/classresolver.c:2176 #13 0x18167bf8 in FindClassFromClassLoader (ee=0x89d1404, name=0x25b9dcc4 "org/apache/xerces/dom/DocumentImpl", resolve=TRUE, loader=0x1954d780, throwError=FALSE) at ../../../src/share/javavm/runtime/classresolver.c:2056 #14 0x1819ebe1 in JVM_FindClassFromClassLoader (env=0x89d1404, name=0x25b9dcc4 "org/apache/xerces/dom/DocumentImpl", init=1 '\001', loader=0x89e05d4, throwError=0 '\000') at ../../../src/share/javavm/runtime/jvm.c:143 #15 0x20431b33 in Java_java_lang_Class_forName0 (env=0x89d1404, this=0x25b9ddd0, classname=0x89e05cc, initialize=1 '\001', loader=0x89e05d4) at ../../../src/share/native/java/lang/Class.c:120 #16 0x181c0e79 in args_done () from /home/JBuilder7/jdk1.3.1/jre/lib/i386/classic/libjvm_g.so #17 0x181690ff in invokeJNINativeMethod (o=0x19545150, mb=0x80967cc, args_size=3, ee=0x89d1404) at ../../../src/share/javavm/runtime/classruntime.c:489 #18 0x18186256 in ExecuteJava_C (initial_pc=0x25b9e2e8 "\x{00D9}", ee=0x89d1404) at ../../../src/share/javavm/runtime/executeJava.c:1579 #19 0x181a7e89 in invoke (ee=0x89d1404, obj=0x0, mb=0x91732c8, nargs=2, parameterTypes=0x1a030e58, args=0x1a030ef0, returnType=0x19545218, isStaticCall=TRUE) at ../../../src/share/javavm/runtime/jvm.c:4069 #20 0x181a81bb in JVM_InvokeMethod (env=0x89d1404, method=0x25b9e3d0, obj=0x0, args0=0x89e04fc) at ../../../src/share/javavm/runtime/jvm.c:4168 #21 0x20433053 in Java_java_lang_reflect_Method_invoke (env=0x89d1404, method=0x25b9e3d0, obj=0x0, args=0x89e04fc) at ../../../src/share/native/java/lang/reflect/Method.c:30 #22 0x18179e98 in invoke_OO_O (o=0x197942c0, mb=0x80b6698, args_size=3, ee=0x89d1404) at ../../../build/bsd-i386/tmp/java/java.lang/jvm/obj_g/invokers.c:201 #23 0x18186256 in ExecuteJava_C (initial_pc=0x25b9e8e8 "\x{00D9}", ee=0x89d1404) at ../../../src/share/javavm/runtime/executeJava.c:1579 #24 0x181a7e89 in invoke (ee=0x89d1404, obj=0x0, mb=0x91316b0, nargs=2, parameterTypes=0x1b47c620, args=0x1b47c6b8, returnType=0x19545218, isStaticCall=TRUE) at ../../../src/share/javavm/runtime/jvm.c:4069 #25 0x181a81bb in JVM_InvokeMethod (env=0x89d1404, method=0x25b9e9d0, obj=0x0, args0=0x89e0290) at ../../../src/share/javavm/runtime/jvm.c:4168 #26 0x20433053 in Java_java_lang_reflect_Method_invoke (env=0x89d1404, method=0x25b9e9d0, obj=0x0, args=0x89e0290) at ../../../src/share/native/java/lang/reflect/Method.c:30 #27 0x18179e98 in invoke_OO_O (o=0x19578108, mb=0x80b6698, args_size=3, ee=0x89d1404) at ../../../build/bsd-i386/tmp/java/java.lang/jvm/obj_g/invokers.c:201 #28 0x18186256 in ExecuteJava_C (initial_pc=0x25b9eee8 "\x{00D6}\r\001$(A!@(B", ee=0x89d1404) at ../../../src/share/javavm/runtime/executeJava.c:1579 #29 0x18177aba in do_execute_java_method_vararg (ee=0x89d1404, obj=0x197789a8, method_name=0x8053bd8 "run", method_signature=0x80532a8 "()V", mb=0x0, isStaticCall=FALSE, args=0x25b9ef70 "\200\024\235\b\004\024\235\b\230\x{00EF}\x{00B9}%\x{00CF}Y\e\030\024Z\e\030\004\024\235\b\x{00B8}\x{00EF}\x{00B9}%tZ\e\030$(A!'(B\211w\031\004\024\235\b\x{00B8}\x{00EF}\x{00B9}%eZ\e\030\024Z\e\030$(A(((B\x{00EF}\x{00B9}%X\x{00EB}\n\030\003", otherBits=0x0, shortFloats=FALSE) at ../../../src/share/javavm/runtime/interpreter.c:573 #30 0x181772bc in execute_java_dynamic_method (ee=0x89d1404, obj=0x197789a8, method_name=0x181c6f60 "run", signature=0x181c739e "()V") at ../../../src/share/javavm/runtime/interpreter.c:288 #31 0x181a2cbc in ThreadRT0 (p=0x197789a8) at ../../../src/share/javavm/runtime/jvm.c:2101 #32 0x181b5a74 in saveStackBase (args=0x181a2c68) at ../../../src/share/javavm/runtime/threads.c:139 #33 0x1807afed in start_func (func=0x181b5a14 , args=0xbfbfcba4) at ../../../../src/solaris/hpi/green_threads/src/threads_md.c:351 #34 0x0 in ?? () (gdb) c Continuing. SIGABRT 6* abort (generated by abort(3) routine) Full thread dump Classic VM (1.3.1-p6-root-020411-08:16, green threads): "Image Fetcher 2" (TID:0x195d1268, sys_thread_t:0x8dcd880, state:R) prio=3 at java.lang.Thread.isInterrupted(Native Method) at java.lang.Thread.interrupted(Thread.java:682) at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:209) at sun.awt.image.ImageFetcher.run(ImageFetcher.java:185) "Image Fetcher 3" (TID:0x1976e4a0, sys_thread_t:0x8657c80, state:R) prio=3 at java.awt.MediaTracker.setDone(MediaTracker.java:774) at java.awt.MediaEntry.setStatus(MediaTracker.java:846) at java.awt.ImageMediaEntry.imageUpdate(MediaTracker.java:910) at sun.awt.image.ImageWatched.newInfo(ImageWatched.java:58) at sun.awt.image.ImageRepresentation.imageComplete(ImageRepresentation.java:626) at sun.awt.image.ImageDecoder.imageComplete(ImageDecoder.java:138) at sun.awt.image.GifImageDecoder.produceImage(GifImageDecoder.java:281) at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:257) at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:217) at sun.awt.image.ImageFetcher.run(ImageFetcher.java:185) "AWT-Motif" (TID:0x19778f98, sys_thread_t:0x89fc280, state:R) prio=6 at sun.awt.motif.MToolkit.run(Native Method) at java.lang.Thread.run(Thread.java:484) "SunToolkit.PostEventQueue-0" (TID:0x19778b48, sys_thread_t:0x89d1880, state:CW) prio=6 at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:420) at sun.awt.PostEventQueue.run(SunToolkit.java:491) "AWT-EventQueue-0" (TID:0x197789a8, sys_thread_t:0x89d1480, state:R) prio=6 at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:120) at com.borland.jbuilder.node.JPXProjectStorageLoader.initOpenTool(Unknown Source) at java.lang.reflect.Method.invoke(Native Method) at com.borland.primetime.PrimeTime.b(Unknown Source) at com.borland.primetime.PrimeTime.initializeOpenTools(Unknown Source) at com.borland.primetime.PrimeTime.initializeOpenTools(Unknown Source) at com.borland.primetime.node.FileType.a(Unknown Source) at com.borland.primetime.node.FileType.getFileTypes(Unknown Source) at com.borland.primetime.node.ui.FileTypePropertyGroup.b(Unknown Source) at com.borland.primetime.node.ui.FileTypePropertyGroup.initializeProperties(Unknown Source) at com.borland.primetime.properties.PropertyManager.registerPropertyGroup(Unknown Source) at com.borland.primetime.node.ui.FileTypePropertyGroup.initOpenTool(Unknown Source) at java.lang.reflect.Method.invoke(Native Method) at com.borland.primetime.PrimeTime.b(Unknown Source) at com.borland.primetime.PrimeTime.initializeOpenTools(Unknown Source) at com.borland.jbuilder.ac.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:154) at java.awt.EventQueue.dispatchEvent(EventQueue.java:337) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:85) "Finalizer" (TID:0x19545530, sys_thread_t:0x80dd080, state:CW) prio=8 at java.lang.Object.wait(Native Method) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:108) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:123) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162) "Reference Handler" (TID:0x19545308, sys_thread_t:0x8099480, state:CW) prio=10 at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:420) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110) "Signal dispatcher" (TID:0x19545338, sys_thread_t:0x8099280, state:CW) prio=5 "Thread-1" (TID:0x1972d4a8, sys_thread_t:0x8057080, state:CW) prio=5 Monitor Cache Dump: java.lang.ref.ReferenceQueue$Lock@195455B8/19BAEFD8: Waiting to be notified: "Finalizer" (0x80dd080) java.lang.Class@19796ED8/1A08ED88: owner "AWT-EventQueue-0" (0x89d1480) 1 entry java.lang.Class@19634208/1A953CC0: owner "AWT-EventQueue-0" (0x89d1480) 1 entry java.lang.ref.Reference$Lock@19545318/19BAEA08: Waiting to be notified: "Reference Handler" (0x8099480) java.lang.Class@19578348/1B47C448: owner "AWT-EventQueue-0" (0x89d1480) 1 entry sun.awt.PostEventQueue@19778B48/1B280170: Waiting to be notified: "SunToolkit.PostEventQueue-0" (0x89d1880) java.lang.Class@195D6370/1AFA3FD0: owner "AWT-EventQueue-0" (0x89d1480) 2 entries Registered Monitor Dump: utf8 hash table: JNI pinning lock: JNI global reference lock: BinClass lock: Class linking lock: System class loader lock: Code rewrite lock: Heap lock: Monitor cache lock: owner "AWT-EventQueue-0" (0x89d1480) 1 entry Dynamic loading lock: Monitor IO lock: User signal monitor: Waiting to be notified: "Signal dispatcher" (0x8099280) Child death monitor: I/O monitor: owner "AWT-Motif" (0x89fc280) 1 entry Alarm monitor: Waiting to be notified: (0x8057280) Thread queue lock: owner "AWT-EventQueue-0" (0x89d1480) 1 entry Waiting to be notified: "Thread-1" (0x8057080) Monitor registry: owner "AWT-EventQueue-0" (0x89d1480) 1 entry Program received signal SIGABRT, Aborted. 0x180ba7b4 in kill () from /usr/lib/libc.so.4 (gdb) quit --hwh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 20: 9: 7 2002 Delivered-To: freebsd-java@freebsd.org Received: from probity.mcc.ac.uk (probity.mcc.ac.uk [130.88.200.94]) by hub.freebsd.org (Postfix) with ESMTP id E6D0E37B41C for ; Sat, 15 Jun 2002 20:09:03 -0700 (PDT) Received: from dogma.freebsd-uk.eu.org ([130.88.200.97]) by probity.mcc.ac.uk with esmtp (Exim 2.05 #7) id 17JQPP-000Idw-00; Sun, 16 Jun 2002 04:08:56 +0100 Received: (from jcm@localhost) by dogma.freebsd-uk.eu.org (8.11.6/8.11.1) id g5G38nX59639; Sun, 16 Jun 2002 04:08:49 +0100 (BST) (envelope-from jcm) Date: Sun, 16 Jun 2002 04:08:48 +0100 From: j mckitrick To: Michael Westbay Cc: Joe Shevland , freebsd-java@FreeBSD.ORG Subject: Re: Recommended servlet starter tools? Message-ID: <20020616040848.A59622@dogma.freebsd-uk.eu.org> References: <20020614030118.A41033@dogma.freebsd-uk.eu.org> <20020614054400.BA8B321149@www.j-elite.com> <20020614171809.A45977@dogma.freebsd-uk.eu.org> <200206150839.04380.westbay@seaple.icc.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200206150839.04380.westbay@seaple.icc.ne.jp>; from westbay@seaple.icc.ne.jp on Sat, Jun 15, 2002 at 08:39:04AM +0900 X-Scanner: exiscan *17JQPP-000Idw-00*56y2F7GRp2I* (Manchester Computing, University of Manchester) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org | > Question: my poor little P2-266 is pegged to the limit when I run | > tomcat and try to access the home page. Is this normal? | | Add memory and/or eliminate X and you should be fine. I have a 200MHz FreeBSD I took your advice (no netscape, no X) an I saw a difference. Also, it seems to take a while to get started, but then the CPU usage tapers off. If I have OpenJIT installed an showing up in 'java -version' does this mean Tomcat is compiled and then run natively? jm -- There are only 10 types of people in this world: those who understand binary, and those who don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 21: 9:44 2002 Delivered-To: freebsd-java@freebsd.org Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by hub.freebsd.org (Postfix) with ESMTP id 927F637B41A for ; Sat, 15 Jun 2002 21:09:35 -0700 (PDT) Received: from mail by mgr2.xmission.com with spam-scanned (Exim 3.35 #1) id 17JRM2-0004lD-00; Sat, 15 Jun 2002 22:09:30 -0600 Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 17JRM0-0004lA-00; Sat, 15 Jun 2002 22:09:29 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id g5G49L816741; Sun, 16 Jun 2002 13:39:21 +0930 (CST) (envelope-from glewis) Date: Sun, 16 Jun 2002 13:39:20 +0930 From: Greg Lewis To: Huang wen hui Cc: java@FreeBSD.ORG Subject: Re: java_g coredump when using jb6/jb7+linux 7.1 emulator under FreeBSD 4.6 release Message-ID: <20020616133920.A16725@misty.eyesbeyond.com> References: <3D0B592F.7040502@mail.gddsn.org.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3D0B592F.7040502@mail.gddsn.org.cn>; from hwh@ns.gddsn.org.cn on Sat, Jun 15, 2002 at 11:11:43PM +0800 X-Spam-Status: No, hits=-4.4 required=8.0 tests=IN_REP_TO version=2.20 X-Spam-Level: Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, Jun 15, 2002 at 11:11:43PM +0800, Huang wen hui wrote: > hi, > I use JBuilder6/7 under FreeBSD 4.6, and JDK is native JDK1.3.1-p6 > not linux-jdk1.3.1. Because jbuilder7 > startup program and cvs module is linux binary exec files. so I use > Linux7.1 emulator. > > Sometime JBuilder coredump (signal 6) after using cvs module in IDE. I > try to using java_g to startup JBuilder. > But JBuilder could not startup if using java_g. Does native jdk1.3.1-p6 > have problem with debug option ? Well, it appears to have a problem in this instance. Its also very hard to check if its a problem for us only since sun don't distribute debug versions for Solaris and Linux that I can find. If I'm right, the debug executable checks all the assert()'s in the code whereas the non-debug version will ignore. It looks like JBuilder is triggering one of those asserts. It also may be some interaction with some of the programs in JBuilder being Linux executables (its hard to say without having JBuilder installed). Thank you for the report and stack trace though! -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jun 15 23:10:32 2002 Delivered-To: freebsd-java@freebsd.org Received: from sdodson.dns2go.com (66-133-142-207.roc.frontiernet.net [66.133.142.207]) by hub.freebsd.org (Postfix) with ESMTP id 91AF737B42F for ; Sat, 15 Jun 2002 23:10:26 -0700 (PDT) Received: from sdodson.dns2go.com (localhost [127.0.0.1]) by sdodson.dns2go.com (8.12.3/8.12.3) with ESMTP id g5G6AL6E002360 for ; Sun, 16 Jun 2002 02:10:22 -0400 (EDT) (envelope-from gsi22419@gsaix2.cc.gasou.edu) Received: (from sdodson@localhost) by sdodson.dns2go.com (8.12.3/8.12.3/Submit) id g5G6AJHn002359 for freebsd-java@freebsd.org; Sun, 16 Jun 2002 02:10:19 -0400 (EDT) X-Authentication-Warning: sdodson.dns2go.com: sdodson set sender to gsi22419@gsaix2.cc.gasou.edu using -f Date: Sun, 16 Jun 2002 02:10:19 -0400 From: Scott Dodson To: freebsd-java@freebsd.org Subject: jdk13 patch fails? Message-ID: <20020616021019.B2015@sdodson.dns2go.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.6-RC i386 X-Distributed: Join the Effort! http://www.distributed.net/ Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm having problems getting the jdk13 port to build properly. It is failing due to the following error : >> Patch patch-HAE_API_BSDOS_Capture.c failed to apply cleanly. -- Scott Dodson PGP KEY id 0x5F9A9E5E sdodson@sdodson.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message