From owner-freebsd-java@FreeBSD.ORG Sun Feb 8 01:39:35 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2D16106564A for ; Sun, 8 Feb 2009 01:39:35 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4913F8FC12 for ; Sun, 8 Feb 2009 01:39:35 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id n181dOo1043568; Sun, 8 Feb 2009 01:39:30 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.1 smtp.infracaninophile.co.uk n181dOo1043568 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1234057170; bh=QNN+E34Cx08nJU8ogPP3aA3NjEI7BvRaYKNJXCZ4rPE=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<498E37C5.8090208@infracaninophile.co.uk>|Date:=20S un,=2008=20Feb=202009=2001:39:17=20+0000|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Thunderbird=202.0.0.19=20(X11/20090125)|MIME-Vers ion:=201.0|To:=20Chuck=20Robey=20|CC:=20freebs d-java@freebsd.org|Subject:=20Re:=20tomcat=20again|References:=20< 498E0FA7.1020102@telenix.org>|In-Reply-To:=20<498E0FA7.1020102@tel enix.org>|X-Enigmail-Version:=200.95.6|Content-Type:=20multipart/s igned=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"application/ pgp-signature"=3B=0D=0A=20boundary=3D"------------enig277750433117 866B80EAB45F"; b=u+M4JXOrs++WvPQg1Usvb76PqMqH7qZdf1d+7LcFLWvrL4p3K1C5A8SovKnL7F99p aKpoOVuOLN+Pz5DW6DHqCVsx9VY/rQ9a90shGpEdO0sYKzNAT65sOrtPfqx2pOzQB1 6cw/FeWNOXb6KRWX4K6KAdorLFvEOdQG8SpBZokQ= Message-ID: <498E37C5.8090208@infracaninophile.co.uk> Date: Sun, 08 Feb 2009 01:39:17 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.19 (X11/20090125) MIME-Version: 1.0 To: Chuck Robey References: <498E0FA7.1020102@telenix.org> In-Reply-To: <498E0FA7.1020102@telenix.org> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig277750433117866B80EAB45F" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 08 Feb 2009 01:39:30 +0000 (GMT) X-Virus-Scanned: ClamAV 0.94.2/8963/Sat Feb 7 05:53:02 2009 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-java@freebsd.org Subject: Re: tomcat again X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2009 01:39:36 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig277750433117866B80EAB45F Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Chuck Robey wrote: > I really don't know if this should go to FreeBSD-Java or FreeBSD-ports,= I chose > ports, I hope this is right. >=20 > I'm trying to get the port of tomcat6 to proxy a webpage through the re= cently > installed Apache22 port. Both Apache22 and Tomcat6 seem to work fine w= hen > directly queried (port 8008 for Tomcat). From what I've read, I need a= mod > loaded, according to this line added to my httpd.conf: >=20 > LoadModule webapp_module libexec/apache22/mod_webapp.so >=20 Why wouldn't you use either mod_jk or mod_proxy_ajp here? Of course, you need tomcat to have an AJP13 listener set up (usually port 8009 -- example config is in the standard server.xml but commented out I think) AJP13 is just a condensed version of HTTP with most of the standard text strings replaced by binary codes, and it uses persistent apache <-> tomcat connections rather than tearing them down after each session, so it's a bit more efficient. mod_jk is more developed and more widely used but it's yet another packag= e to install. mod_proxy_ajp comes as standard with apache22 -- it's a refactoring of the mod_jk code to take all the load-balancy stuff out int= o a separate mod_proxy module and then add back in the AJP13-ness separatel= y. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig277750433117866B80EAB45F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkmON8wACgkQ8Mjk52CukIzSxwCghl+szf/oveXhBlsVmK7CXZH3 A20AmwW74ICDjq36TA0PjHkZQAJswYpl =c/jR -----END PGP SIGNATURE----- --------------enig277750433117866B80EAB45F-- From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 01:00:24 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEE881065728 for ; Mon, 9 Feb 2009 01:00:20 +0000 (UTC) (envelope-from broadcasts@myfanbox.com) Received: from smtp953.sms.ac (smtp953.sms.ac [208.69.97.53]) by mx1.freebsd.org (Postfix) with ESMTP id 62C2D8FC14 for ; Mon, 9 Feb 2009 01:00:13 +0000 (UTC) (envelope-from broadcasts@myfanbox.com) DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k6; d=myfanbox.com; b=na3JSEncuIHMkflDWAVB3FQDQKYybkZh07A1vTShQ69J/cS2b91E+tBd4VvC70c8/TBGnkPCZ7cq /+4748Q2Bg==; Received: by smtp953.sms.ac id hhu01q0ntk4v for ; Sun, 8 Feb 2009 16:30:09 -0800 (envelope-from ) MessageLogId: 1381522903 EmailType: 30 X-JAM: O0030 From: "FanBox Broadcast" To: freebsd-java@freebsd.org Date: 8 Feb 2009 16:29:47 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <498F7911.00000C37@smtp953.sms.ac> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Your fan Baby_G sent you a broadcast on FanBox X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 01:00:26 -0000 = =0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A =0D=0A Hi freebsd-java! = =0D=0A =0D=0A Your fan Baby_G sent you a broadcast on FanBox. =0D=0A =0D=0A [1]Automatically= sign in and read the message from Baby_G. =0D=0A =0D=0A= =0D=0A You can [2]change the frequency of this type of notification. Visit our [3]Terms of Service or [4]Privacy Policy. =0D=0A FanBox - 255 G Street #723, San Diego,= CA 92101, USA =0D=0A =0D=0A=0D=0A References 1. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D5&me=3Dyjp8Ecs52E9LMARDJsQu.WdufJxzEf2Nn7wjM1eJxjAHdYgKoNqTMIF9KtN3.WKZQwjLyi0o2fp0VnppqszH3AQDFzA6WMrsZtVYPQFyfYaPezoLM-Iac2HDXgdv1lq5xcBpGRR0mmc2OZ-v1jB0SOvtiEUtf6v-20FhGNkvUOaO8SE14L-zGwI7yVhxK-66&fan=3DuRZVsVGgKnfEtHtD2w0egA=3D=3D&opg=3Dhttp://profile.fanbox.com/Inbox/Main.aspx?messages=3D34&vet=3D30&dt=3D020809&mlid=3D1381522903" 2. 3D"http://profile.fanbox.com/ApplicationManager/CommunityEmailSettings.aspx?em=3D2VPPvcB5nSy19YlCM0b16xkXtD2VKrzQcKSLpCkceqs%3D&vet=3D30&mlid=3D1381522903"= 3. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.WdufJxzEf2Nn7wjM1eJxjAHdYgKoNqTMIF9KtN3.WKZQwjLyi0o2fp0VnppqszH3PLnuSSsNT-lfPEVNcwFmNRhFrinO3G5WfLSzwT-fWse0URAREHEgnYmHsN1z4ZzrnRoCPlU8eCN4C1D8d8Oausv3VrlDqKMIjczD5IUK47Q&fan=3DuRZVsVGgKnfEtHtD2w0egA=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/TermsAndCons.aspx&vet=3D30&dt=3D020809&mlid=3D1381522903"= 4. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.WdufJxzEf2Nn7wjM1eJxjAHdYgKoNqTMIF9KtN3.WKZQwjLyi0o2fp0VnppqszH3AJmgU4tsON8uur6.QdSzZO0.pa9apCwwihWhC-Uar1T-BXlTjGI-K3hr9KpvU8Gv2xJTkNq5BVD36E-.mzOHBHWggULv9dEXY.QpCf00vEe&fan=3DuRZVsVGgKnfEtHtD2w0egA=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/Privacy.aspx&vet=3D30&dt=3D020809&mlid=3D1381522903"= From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 09:02:12 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45DE3106566B; Mon, 9 Feb 2009 09:02:12 +0000 (UTC) (envelope-from horst.leitenmueller@liwest.at) Received: from lilzmailso02.liwest.at (lilzmailso02.liwest.at [212.33.55.13]) by mx1.freebsd.org (Postfix) with ESMTP id 06EEB8FC08; Mon, 9 Feb 2009 09:02:11 +0000 (UTC) (envelope-from horst.leitenmueller@liwest.at) Received: from mail.be-informed.at ([81.10.222.30] helo=[192.168.10.99]) by lilzmailso02.liwest.at with esmtpa (Exim 4.69) (envelope-from ) id 1LWRIL-0007gk-2u; Mon, 09 Feb 2009 09:15:09 +0100 From: Horst Leitenmueller To: freebsd-java@freebsd.org Content-Type: text/plain Date: Mon, 09 Feb 2009 09:15:08 +0100 Message-Id: <1234167308.1925.9.camel@lap02.be-informed.at> Mime-Version: 1.0 X-Mailer: Evolution 2.24.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Score: -1.4 (-) Cc: ports@FreeBSD.org Subject: Jboss 5.0 GA X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 09:02:12 -0000 hello greg lewis, just information for jboss 5.GA PORTVERSION= 5.0.0.GA PORTEPOCH= 1 there is the common dir missing on toplevel which must be copied to the output (small fix for now) cp -R /usr/ports/java/jboss5/work/jboss-5.0.0.GA-src/build/output/jboss-5.0.0.GA/common /usr/local/jboss5/ chown -R www:www /usr/local/jboss5/common this is new; changed from jboss 4 to jboss 5 common contains the jar files for the base server/* missing in Makefile: APP_HOME_FILES= bin client lib server *common* br horst leitenmueller -- ------------------------------------ Horst Leitenmueller email: horst.leitenmueller@liwest.at ------------------------------------ From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 11:06:55 2009 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 119741065670 for ; Mon, 9 Feb 2009 11:06:55 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D82E58FC14 for ; Mon, 9 Feb 2009 11:06:54 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n19B6sv6009175 for ; Mon, 9 Feb 2009 11:06:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n19B6sWA009171 for freebsd-java@FreeBSD.org; Mon, 9 Feb 2009 11:06:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 9 Feb 2009 11:06:54 GMT Message-Id: <200902091106.n19B6sWA009171@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-java@FreeBSD.org X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 11:06:55 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/130542 java java/jdk16-doc changed distifo o java/128948 java java/jdk16 built from source can't bind a socket, but o java/128809 java JVM aborted when GNU RXTX write to serial port. o java/125583 java Java gui programs stop without error message o java/123555 java linux-sun-jdk15, linux-sun-jdk16 produce a coredump o java/122513 java native JDKs unbuildable with Linux ones o java/121692 java java/jdk16: Java 1.5 1.5.0.14p8 crashes in RMI TCP Con o ports/121420 java java/jdk16: Java applet fails to find class under fire o ports/121416 java java/jdk15 can't build if BIN environment variable is o ports/120372 java java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' o java/120146 java java/jdk15: netbeans 6.0 causes java core dump on amd6 o ports/119732 java java/linux-sun-jre16: linux-sun-jre16 plugin doesn't w o java/119063 java An unexpected error has been detected by Java Runtime o java/118956 java eclipse and netbeans break on diablo-jdk15 o java/118496 java Eclipse packages do not work with 6.3-RC1/amd64 o ports/116841 java cannot build java/jdk16 by using java/linux-sun-jdk16 o java/116667 java linux-sun-javac1.4 hangs on SMP o ports/116082 java java/linux-sun-jdk16 jconsole is unable to connect to o java/115773 java [request] java.nio channel selectors should use kqueue o java/114644 java tomcat goes out of PermSpace, jvm crashes o ports/113751 java java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java o ports/113467 java Multiple "missing return value" errors building JDK on o java/112595 java Java appletviewer frequently hangs (kse_release loop) o java/110912 java Java krb5 client leaks UDP connections o java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o java/97461 java Diablo JDK does not report Update level in a format su o ports/84742 java make ports/java/jdk14 use dynamic Motif librarires s java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in s ports/60083 java java/jdk14 - Unsafe use of getaddrinfo in jvm 1.4.2-p5 s ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext 30 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Feb 9 13:19:11 2009 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FD17106564A for ; Mon, 9 Feb 2009 13:19:11 +0000 (UTC) (envelope-from tommyhp2@yahoo.com) Received: from web38205.mail.mud.yahoo.com (web38205.mail.mud.yahoo.com [209.191.124.148]) by mx1.freebsd.org (Postfix) with SMTP id F35CC8FC17 for ; Mon, 9 Feb 2009 13:19:10 +0000 (UTC) (envelope-from tommyhp2@yahoo.com) Received: (qmail 91299 invoked by uid 60001); 9 Feb 2009 12:52:27 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Mailer:References:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=O+9GRE9waOPi6Mb32tuTMmIl/464vUWYHLKen/rF8uR1Vli7QlfBKnr2oTLv2PP7St8x0e4Yxtp5AYtgCq5HPcVd2AotRTy3DNvXKEJpQiJhNuYMKocifCwm0qlIlqGdqPRFYAzIZL76G59x3MMexeUBVzWJ6H6DIauoJThrL1E=; Received: from [71.104.112.61] by web38205.mail.mud.yahoo.com via HTTP; Mon, 09 Feb 2009 04:52:27 PST X-Mailer: YahooMailRC/1156.82 YahooMailWebService/0.7.260.1 References: <498B4E6C.40305@telenix.org> Date: Mon, 9 Feb 2009 04:52:27 -0800 (PST) From: Tommy Pham To: Chuck Robey , freebsd-java@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Message-ID: <879358.90788.qm@web38205.mail.mud.yahoo.com> Cc: Subject: Re: still trying to get tomcat working X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 13:19:11 -0000 Hi Chuck,=0A=0A=0A----- Original Message ----=0AFrom: Chuck Robey =0ATo: freebsd-java@FreeBSD.org=0ASent: Thursday, February 5, 20= 09 12:39:08 PM=0ASubject: still trying to get tomcat working=0A=0A-----BEGI= N PGP SIGNED MESSAGE-----=0AHash: SHA1=0A=0AI finally found a writeup on to= mcat6 configuration which was new enough not to=0Arely on Linux executeable= s.=A0 Anyhow, early in that writeup, it's talking about=0Ausing the jsvc ja= va package.=A0 I used a little script I wrote myself some years=0Aago to sc= an all of the ports plists for any mention of "jsvc".=A0 I found the=0Atarb= all that's dropped into the tomcat6 bin/ subdir, but not a port to build it= ,=0Adid I miss an important port?=A0 I tried to unpack it and build it, but= when the=0Ajsvc's configure script realizes it's in FreeBSD-8.0 (I run cur= rent), it burped=0Amessily and died, guess it can't handle superior OS qual= ity.=0A=0AIf anyone has a patch to get jsvc building, or maybe a comment te= lling me I=0Adon't need it for some reason, I'd appreciate either.=A0 I fou= nd what's described=0Aas a very vanilla "conf/server.xml" (one of tomcat6's= config files) but it seems=0Ato want some minor modifications, and the fie= lds aren't described, only given on=0Aexample.... damn, I Hate things which= only give one example, but no description,=0Aif your setup isn't precisely= what the author's is, I can't figure out where to=0Ago with things.=A0 All= that instructions I've seen so far, they all fall in that=0Acategory.=0A= =0AIf anyone happens to have a pet description of server.xml (not an exampl= e, a=0Adescription of things which need localization) I'd sure appreciate t= hat.=A0 Java=0Apackage names look so much like machine names, I can't tell = where I need to=0Alocalize things or not, not without a description of what= the fields are.=0A-----BEGIN PGP SIGNATURE-----=0AVersion: GnuPG v2.0.9 (F= reeBSD)=0AComment: Using GnuPG with Mozilla - http://enigmail.mozdev.org=0A= =0AiEYEARECAAYFAkmLTmwACgkQz62J6PPcoOm3UQCdEfUmIUvkzvdmqBZML0vOYUwr=0ANbcAn= iRka/L6LIZXVuPyZdd07LNyrLNQ=0A=3DsZz3=0A-----END PGP SIGNATURE-----=0A_____= __________________________________________=0Afreebsd-java@freebsd.org maili= ng list=0Ahttp://lists.freebsd.org/mailman/listinfo/freebsd-java=0ATo unsub= scribe, send any mail to "freebsd-java-unsubscribe@freebsd.org"=0A=0A=0AIf = I'm not mistaken, I think this is OT.=A0 You'll have a better answer if you= ask the tomcat ML=0Asince you're asking for is tomcat related=A0"conf/serv= er.xml" =A0:)=0A=0ARegards,=0ATommy From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 14:11:42 2009 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99468106567A for ; Tue, 10 Feb 2009 14:11:42 +0000 (UTC) (envelope-from nwsadm@piekmarketing.eu) Received: from mail.piekmarketing.eu (mail.piekmarketing.eu [94.75.242.227]) by mx1.freebsd.org (Postfix) with ESMTP id 2CC728FC1B for ; Tue, 10 Feb 2009 14:11:42 +0000 (UTC) (envelope-from nwsadm@piekmarketing.eu) Received: from mail pickup service by mail.piekmarketing.eu with Microsoft SMTPSVC; Tue, 10 Feb 2009 13:15:32 +0100 X-Mailing-Software: Newsletter Manager Pro by www.dfsol.com X-SID: 717369IDEND thread-index: AcmLeUVf1LPSkH4RRtSEwew2CAL4jA== Thread-Topic: Newsletter PIEK International Education Center I.E.C. From: "Piek International Education Centre \(I.E.C.\)" To: Date: Tue, 10 Feb 2009 13:15:32 +0100 Message-ID: <701AD24802304FB5B921134227D4C210@ZRE001> MIME-Version: 1.0 X-Mailer: Microsoft CDO for Windows 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4325 X-OriginalArrivalTime: 10 Feb 2009 12:15:32.0811 (UTC) FILETIME=[4561C9B0:01C98B79] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Newsletter PIEK International Education Center I.E.C. X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Piek International Education Centre \(I.E.C.\)" List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2009 14:11:43 -0000 From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 20:04:29 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C42E81065755 for ; Tue, 10 Feb 2009 20:04:29 +0000 (UTC) (envelope-from broadcasts@myfanbox.com) Received: from smtp961.sms.ac (smtp961.sms.ac [208.69.97.61]) by mx1.freebsd.org (Postfix) with ESMTP id A40538FC1B for ; Tue, 10 Feb 2009 20:04:29 +0000 (UTC) (envelope-from broadcasts@myfanbox.com) DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k6; d=myfanbox.com; b=ecQaedvf6Y6YdY8zz95RYK/ZjgvFSTh7BRpuP5ZJyf0LlMX7IqcErzfFYTW/YfHITzdWJCA25LFc HcnRgMTLVg==; Received: by smtp961.sms.ac id hi7esq0ntk4m for ; Tue, 10 Feb 2009 08:02:47 -0800 (envelope-from ) MessageLogId: 1398117400 EmailType: 30 X-JAM: O0030 From: "FanBox Broadcast" To: freebsd-java@freebsd.org Date: 10 Feb 2009 08:02:29 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <4991A527.00000DAD@smtp961.sms.ac> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Your fan inc754856731768 sent you a broadcast on FanBox X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2009 20:04:30 -0000 = =0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A =0D=0A Hi freebsd-java! = =0D=0A =0D=0A Your fan inc754856731768 sent you a broadcast= on FanBox. =0D=0A =0D=0A [1]Automatically= sign in and read the message from inc754856731768. =0D=0A =0D=0A =0D=0A You can [2]change the frequency of this type of notification. Visit our [3]Terms of Service or [4]Privacy Policy. =0D=0A FanBox - 255 G Street #723, San Diego,= CA 92101, USA =0D=0A =0D=0A=0D=0A References 1. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D5&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItXA1pm0hs0-hWoUKs5XObbU8iu0VdUmnHboIBQ4sR-aU9HTk0DQSsJR8OBC9RBcShCMFfRyLwV6riM8o7d-Y-54mHI0X6ZO4X-e4AgIlhpFAauvFFp8Cs8jzy-6ZlTT3OweQ7uUzh1L8DQeVFyZyYq&fan=3D0EdCkKsavnYqcHXV4NeJ+w=3D=3D&opg=3Dhttp://profile.fanbox.com/Inbox/Main.aspx?messages=3D34&vet=3D30&dt=3D021009&mlid=3D1398117400" 2. 3D"http://profile.fanbox.com/ApplicationManager/CommunityEmailSettings.aspx?em=3D2VPPvcB5nSy19YlCM0b16xkXtD2VKrzQcKSLpCkceqs%3D&vet=3D30&mlid=3D1398117400"= 3. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItXA1pm0hs0-hWoUKs5XObbU8iu0VdUmnHboIBQ4sR-aYklP10hBZaLHtO0jETcklYjBt5r6MM.p44ORXEbh-3bCS.n7b91DY1PN7OSn6OHpzcB9BWeNNhkamw2iqwqvkFOD40zM2H3c1iM8N1JhiAp&fan=3D0EdCkKsavnYqcHXV4NeJ+w=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/TermsAndCons.aspx&vet=3D30&dt=3D021009&mlid=3D1398117400"= 4. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItXA1pm0hs0-hWoUKs5XObbU8iu0VdUmnHboIBQ4sR-aV5jM4CZqnTwjksNnucXg1Ap3PGLdlHmyeE7IQp.zvKw1K5QyZhJjZ-NhnfhG3Rotj8GWdT2P7D-qi8gk-teanXZouC80PxKWEpF71rzn6oS&fan=3D0EdCkKsavnYqcHXV4NeJ+w=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/Privacy.aspx&vet=3D30&dt=3D021009&mlid=3D1398117400"= From owner-freebsd-java@FreeBSD.ORG Tue Feb 10 23:28:59 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E717A106566C for ; Tue, 10 Feb 2009 23:28:59 +0000 (UTC) (envelope-from brian@getsnappy.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [64.156.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id D567C8FC08 for ; Tue, 10 Feb 2009 23:28:59 +0000 (UTC) (envelope-from brian@getsnappy.com) Received: from [192.168.103.26] (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with ESMTP id DCCCC4A30A40 for ; Tue, 10 Feb 2009 14:48:21 -0800 (PST) Message-ID: <49920439.8010208@getsnappy.com> Date: Tue, 10 Feb 2009 14:48:25 -0800 From: Brian Gardner User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2009 23:29:00 -0000 I've completed creating the following ports: java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). This port will probably only function properly for amd64, and there are probably some dependency issues. I've been grinding (load testing) this port over the weekend with some serious concurrency and it's held its own. We released this port to a production machine today as well without any hickups so far. I'd appreciate any help in testing the port and openjdk6 and patching it to support all other architectures. Anybody interested please email me, and I'll email you the zipped up ports. From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 00:57:40 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D66010656C1 for ; Wed, 11 Feb 2009 00:57:40 +0000 (UTC) (envelope-from adam@thegeeklord.com) Received: from hapkido.dreamhost.com (hapkido.dreamhost.com [66.33.216.122]) by mx1.freebsd.org (Postfix) with ESMTP id 166648FC0A for ; Wed, 11 Feb 2009 00:57:39 +0000 (UTC) (envelope-from adam@thegeeklord.com) Received: from spunkymail-a12.g.dreamhost.com (sd-green-bigip-81.dreamhost.com [208.97.132.81]) by hapkido.dreamhost.com (Postfix) with ESMTP id F17AD17BBBA for ; Tue, 10 Feb 2009 16:30:00 -0800 (PST) Received: from [10.41.53.19] (fw-ext.alphatech.com [198.112.236.6]) by spunkymail-a12.g.dreamhost.com (Postfix) with ESMTP id 7FA937FA9; Tue, 10 Feb 2009 16:29:59 -0800 (PST) Message-ID: <49921BFF.7080605@thegeeklord.com> Date: Tue, 10 Feb 2009 19:29:51 -0500 From: Adam Stroud User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Brian Gardner References: <49920439.8010208@getsnappy.com> In-Reply-To: <49920439.8010208@getsnappy.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 00:57:40 -0000 Brian Gardner wrote: > I've completed creating the following ports: > java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). This > port will probably only function properly for amd64, and there are > probably some dependency issues. I've been grinding (load testing) this > port over the weekend with some serious concurrency and it's held its > own. We released this port to a production machine today as well > without any hickups so far. > I'd appreciate any help in testing the port and openjdk6 and patching it > to support all other architectures. Anybody interested please email me, > and I'll email you the zipped up ports. > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" I am interested in the port. Any specific places you want me to start testing first? Adam From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 02:24:24 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E85EA1065670 for ; Wed, 11 Feb 2009 02:24:24 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7D0278FC13 for ; Wed, 11 Feb 2009 02:24:24 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.1.3]) by tydfam.jp (8.14.2/8.14.2) with ESMTP id n1B2D98M095189; Wed, 11 Feb 2009 11:13:31 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Wed, 11 Feb 2009 11:12:11 +0900 (JST) Message-Id: <20090211.111211.29593248145863070.ken@tydfam.jp> To: brian@getsnappy.com From: ken In-Reply-To: <49920439.8010208@getsnappy.com> References: <49920439.8010208@getsnappy.com> X-Mailer: Mew version 6.2 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=9.5 tests=ALL_TRUSTED autolearn=failed version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on daemon.sub.tydfam.jp Cc: freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 02:24:25 -0000 Brian, Appreciate your big effort on openjdk6. I'd like to test the openjdk6 with my amd64-current machine running jboss4/5, seam, tomcat6, eclipse, eclipse-devel. Thank you in advance. From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 03:31:38 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AAEF106564A for ; Wed, 11 Feb 2009 03:31:38 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (pukruppa.net [213.146.114.24]) by mx1.freebsd.org (Postfix) with ESMTP id BB6368FC1A for ; Wed, 11 Feb 2009 03:31:37 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (localhost [127.0.0.1]) by pukruppa.net (8.14.3/8.14.3) with ESMTP id n1B3Ned2079033; Wed, 11 Feb 2009 04:23:41 +0100 (CET) (envelope-from ulrich@pukruppa.net) Message-ID: <499244BC.7020506@pukruppa.net> Date: Wed, 11 Feb 2009 04:23:40 +0100 From: Peter Ulrich Kruppa User-Agent: Thunderbird 2.0.0.19 (X11/20090130) MIME-Version: 1.0 To: Brian Gardner References: <49920439.8010208@getsnappy.com> In-Reply-To: <49920439.8010208@getsnappy.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 03:31:38 -0000 Brian Gardner schrieb: > I've completed creating the following ports: > java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). This > port will probably only function properly for amd64, and there are > probably some dependency issues. I've been grinding (load testing) this > port over the weekend with some serious concurrency and it's held its > own. We released this port to a production machine today as well > without any hickups so far. > I'd appreciate any help in testing the port and openjdk6 and patching it > to support all other architectures. Anybody interested please email me, > and I'll email you the zipped up ports. Yes - though I only run some minor java apps - I would like to test it on my amd64. Greetings Uli. > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 03:58:16 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49B9810656C1 for ; Wed, 11 Feb 2009 03:58:16 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from el-out-1112.google.com (el-out-1112.google.com [209.85.162.183]) by mx1.freebsd.org (Postfix) with ESMTP id F0EE88FC17 for ; Wed, 11 Feb 2009 03:58:15 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: by el-out-1112.google.com with SMTP id r27so663ele.13 for ; Tue, 10 Feb 2009 19:58:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:message-id:to:cc :subject:from:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=3e9GWMjiAJocxU9PfJiThfk9fIMWkUY+LXrw6Ovd8ls=; b=VkXjniwG711P7atRc/GGoiAt8zK/Jmhuy/8h6bxW1JaGcz20Lim7dLNAxxitTk9VR+ 5OT6VMSwyMNRuBpRKcYyBwFQD87PJJr1DqtrNFfmTEQvdZb/DkTCa9T0EKSn5yKQTMZm QuWVxgULXPBvVV425etMSkpnkXfyFR0Acsa7A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:message-id:to:cc:subject:from:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; b=ZCyAsipH0XTKkonn2JmqltIFJA0V+ynMj8t38FeckC3BvWbbrKl8DJgFiavuacXee3 tWJXkTNhu+xSjsfPCTyUKIuOgpCE3cZvUb5Db0jc1VfvJCkZzvQwADrYYYeL0vUUWrJD Fb4wfvpFIvmbc3dVv8uCtu1ZHUYLUUg2sjzRM= Received: by 10.142.222.21 with SMTP id u21mr500970wfg.26.1234323128386; Tue, 10 Feb 2009 19:32:08 -0800 (PST) Received: from localhost (rikad85.riken.jp [134.160.214.85]) by mx.google.com with ESMTPS id 22sm17585396wfi.41.2009.02.10.19.32.04 (version=SSLv3 cipher=RC4-MD5); Tue, 10 Feb 2009 19:32:05 -0800 (PST) Sender: Maho NAKATA Date: Wed, 11 Feb 2009 12:31:19 +0900 (JST) Message-Id: <20090211.123119.193699308.chat95@mac.com> To: brian@getsnappy.com From: Maho NAKATA In-Reply-To: <49920439.8010208@getsnappy.com> References: <49920439.8010208@getsnappy.com> X-Mailer: Mew version 6.2 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Wed_Feb_11_12_31_19_2009_720)--" Content-Transfer-Encoding: 7bit Cc: freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 03:58:17 -0000 ----Security_Multipart(Wed_Feb_11_12_31_19_2009_720)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Brian Gardner Subject: openjdk6 port complete and ready for testing Date: Tue, 10 Feb 2009 14:48:25 -0800 > I've completed creating the following ports: > java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). This > port will probably only function properly for amd64, and there are > probably some dependency issues. I've been grinding (load testing) > this port over the weekend with some serious concurrency and it's held > its own. We released this port to a production machine today as well > without any hickups so far. > > I'd appreciate any help in testing the port and openjdk6 and patching > it to support all other architectures. Anybody interested please > email me, and I'll email you the zipped up ports. > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to > "freebsd-java-unsubscribe@freebsd.org" Hello Brian, great work! Please send me a port for me or submit your port as PR. My recommendation is submitting as a PR so that everyone can test openjdk6 easily. I'm interested in your port! I'm a de facto maintainer of openoffice.org port. One of the major headache for OOo port is no free Java is available. Best, -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ ----Security_Multipart(Wed_Feb_11_12_31_19_2009_720)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEABECAAYFAkmSRooACgkQpcQqaPiEzfltPgCfRnHoFVNP+Y2fVTGCj4urX1zX +/oAn34nA+3mC2vJ666ZAqQMfJVDNCzB =PWaz -----END PGP SIGNATURE----- ----Security_Multipart(Wed_Feb_11_12_31_19_2009_720)---- From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 07:05:56 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C3FD106566B for ; Wed, 11 Feb 2009 07:05:56 +0000 (UTC) (envelope-from photos@myfanbox.com) Received: from smtp143.sms.ac (smtp143.sms.ac [208.69.101.143]) by mx1.freebsd.org (Postfix) with ESMTP id 158FD8FC1A for ; Wed, 11 Feb 2009 07:05:55 +0000 (UTC) (envelope-from photos@myfanbox.com) DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k6; d=myfanbox.com; b=K2FwO+FxVprKOQgKNPeBAqZ9qurxt5uElviRaUTUeE6XiVqk/zFhpN2YnXZx+GyL8TyzrCMVw8Eb 7m87HGO+IQ==; Received: by smtp143.sms.ac id hi9sd60ntl02 for ; Tue, 10 Feb 2009 22:45:53 -0800 (envelope-from ) MessageLogId: 1405947139 EmailType: 9 X-JAM: O0009 From: "FanBox Photos" To: freebsd-java@freebsd.org Date: 10 Feb 2009 22:45:36 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <49927421.0000089F@smtp143.sms.ac> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Marrriaaa has uploaded a new photo X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 07:05:56 -0000 = =0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A =0D=0A Hi freebsd-java! = =0D=0A =0D=0A Marrriaaa has uploaded a new photo. =0D=0A= =0D=0A [1]Automatically= sign in to view the photo now. =0D=0A =0D=0A = =0D=0A =0D=0A You can [2]change the frequency of this type of notification. Visit our [3]Terms of Service or [4]Privacy Policy. =0D=0A FanBox - 255 G Street #723, San Diego,= CA 92101, USA =0D=0A =0D=0A=0D=0A=0D=0A References 1. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D5&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItQDDzbfdcR5OY2uUU0957kPbZCvDeDIAJ01XHefKVS50Fl5.tT5OxI-rNCBNhYoXgUVAgDHpEHPaU5kn50X0l9T6qWXtj5alRHujaIpkStYFlLV2l72heb-aLbhstw1OfCxwTZcnyh3dHiA8TY0J1d&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/mpa/default.aspx?u=3Dxxmixedbeautyxx670904768&phi=3D6728708&vet=3D9&dt=3D021009&mlid=3D1405947139" 2. 3D"http://profile.fanbox.com/ApplicationManager/CommunityEmailSettings.aspx?em=3D2VPPvcB5nSy19YlCM0b16xkXtD2VKrzQcKSLpCkceqs%3D&vet=3D9&mlid=3D1405947139"= 3. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItQDDzbfdcR5OY2uUU0957kPbZCvDeDIAJ01XHefKVS59o7KegyQ7kFiOqcYnFW.b2cAQ5U755hx5AdEVYhyEMVfLFGYfTa1VgnxtuqSJlT3ztH1gDWOaKQLbKm66B5b7hoCx-hNXBGdRpEzZOBly0O&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/TermsAndCons.aspx&vet=3D9&dt=3D021009&mlid=3D1405947139"= 4. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.eYhA.V8PfB4noshuT.FQItQDDzbfdcR5OY2uUU0957kPbZCvDeDIAJ01XHefKVS57OxX7bqcNq59FJpg8Gh8oksPXFpusa5AJTNfLIe.pPQ.MyJQpI8nGs.mWOubRKbCL-3z.x-fJ1fYyTTYGK-EoNmO8pbH82LhehLsBEdj5HG&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/Privacy.aspx&vet=3D9&dt=3D021009&mlid=3D1405947139"= From owner-freebsd-java@FreeBSD.ORG Wed Feb 11 08:42:30 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2C80106564A for ; Wed, 11 Feb 2009 08:42:30 +0000 (UTC) (envelope-from daichi@jp.freebsd.org) Received: from natial.ongs.co.jp (natial.ongs.co.jp [202.216.246.90]) by mx1.freebsd.org (Postfix) with ESMTP id B2BDD8FC1E for ; Wed, 11 Feb 2009 08:42:30 +0000 (UTC) (envelope-from daichi@jp.freebsd.org) Received: from parancell.ongs.co.jp (dullmdaler.ongs.co.jp [202.216.246.94]) by natial.ongs.co.jp (Postfix) with ESMTPSA id 3E90A125422; Wed, 11 Feb 2009 17:25:25 +0900 (JST) Message-ID: <49928B75.5090307@jp.freebsd.org> Date: Wed, 11 Feb 2009 17:25:25 +0900 From: Daichi GOTO User-Agent: Thunderbird 2.0.0.19 (X11/20090201) MIME-Version: 1.0 To: Brian Gardner References: <49920439.8010208@getsnappy.com> In-Reply-To: <49920439.8010208@getsnappy.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Feb 2009 08:42:31 -0000 There is awesome great respect for your work, Brian! I want to join your port test, would you please mail me openjdk6 port. Thanks Brian Gardner wrote: > I've completed creating the following ports: > java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). This > port will probably only function properly for amd64, and there are > probably some dependency issues. I've been grinding (load testing) this > port over the weekend with some serious concurrency and it's held its > own. We released this port to a production machine today as well > without any hickups so far. > I'd appreciate any help in testing the port and openjdk6 and patching it > to support all other architectures. Anybody interested please email me, > and I'll email you the zipped up ports. > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" -- Daichi GOTO, http://people.freebsd.org/~daichi From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 05:28:35 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F6FB106566B for ; Thu, 12 Feb 2009 05:28:35 +0000 (UTC) (envelope-from photos@myfanbox.com) Received: from smtp137.sms.ac (smtp137.sms.ac [208.69.101.137]) by mx1.freebsd.org (Postfix) with ESMTP id E53B58FC18 for ; Thu, 12 Feb 2009 05:28:34 +0000 (UTC) (envelope-from photos@myfanbox.com) DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k6; d=myfanbox.com; b=hgR/SBWKWNvB6WCfWYtrx7xHtvQIEcpK/V7LCM9nRNgwHH6Z2uPeuEGqgCHX5/zRjql4644k+XfC 8KfDxmFY0A==; Received: by smtp137.sms.ac id hiepo40ntl0n for ; Wed, 11 Feb 2009 21:28:27 -0800 (envelope-from ) MessageLogId: 1415367790 EmailType: 9 X-JAM: O0009 From: "FanBox Photos" To: freebsd-java@freebsd.org Date: 11 Feb 2009 21:28:12 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <4993B37B.00000B95@smtp137.sms.ac> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Marrriaaa has uploaded a new photo X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2009 05:28:35 -0000 = =0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A =0D=0A Hi freebsd-java! = =0D=0A =0D=0A Marrriaaa has uploaded a new photo. =0D=0A= =0D=0A [1]Automatically= sign in to view the photo now. =0D=0A =0D=0A = =0D=0A =0D=0A You can [2]change the frequency of this type of notification. Visit our [3]Terms of Service or [4]Privacy Policy. =0D=0A FanBox - 255 G Street #723, San Diego,= CA 92101, USA =0D=0A =0D=0A=0D=0A=0D=0A References 1. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D5&me=3Dyjp8Ecs52E9LMARDJsQu.VzHtw7k2rz.hERDkQKKrnTUIcPXXj-xofwPLvK3vLxuUAOeMj4ynL4lw4ChvEuvQSMDxT3DM4qAocoDxzK0Wfes5.tLbJnSgi6Q-QjqGWDCzDYe-ySa7QqBJZLENGPAFHwZ.VJ42j4UJksNUdqLuQSk8gCZ3Mmc1S3rWeEbUXEe&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/mpa/default.aspx?u=3Dxxmixedbeautyxx670904768&phi=3D6731327&vet=3D9&dt=3D021109&mlid=3D1415367790" 2. 3D"http://profile.fanbox.com/ApplicationManager/CommunityEmailSettings.aspx?em=3D2VPPvcB5nSy19YlCM0b16xkXtD2VKrzQcKSLpCkceqs%3D&vet=3D9&mlid=3D1415367790"= 3. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.VzHtw7k2rz.hERDkQKKrnTUIcPXXj-xofwPLvK3vLxuUAOeMj4ynL4lw4ChvEuvQYZZgN9kAI9KQAY8Pkc2Dps6ah4VNPmmHTNJyvHIN7SNKNi0voG1Bwl2fhqI68jmc82SXp5Q2SawlDAouGC1Y8EFaVCoFylrYbbADkD3HkQ0&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/TermsAndCons.aspx&vet=3D9&dt=3D021109&mlid=3D1415367790"= 4. 3D"http://www.fanbox.com/socnet/EmailStat.aspx?lit=3D-1&me=3Dyjp8Ecs52E9LMARDJsQu.VzHtw7k2rz.hERDkQKKrnTUIcPXXj-xofwPLvK3vLxuUAOeMj4ynL4lw4ChvEuvQU055Hp62b9VRydYdBwgZRR-3bT8Jp-ZRS4s.4dNYp8AbuHIMdvYSmuVu7aUS9MN-TAMZm8Gm49xAvzf.vhciuNwocbqv1izEXO.6P8D4g3s&fan=3DQfuC9hvgCE3PT03FsduAXQ=3D=3D&opg=3Dhttp://profile.fanbox.com/Homepage/Privacy.aspx&vet=3D9&dt=3D021109&mlid=3D1415367790"= From owner-freebsd-java@FreeBSD.ORG Thu Feb 12 12:02:58 2009 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5355B1065A17 for ; Thu, 12 Feb 2009 12:02:54 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from mta2.srv.hcvlny.cv.net (mta2.srv.hcvlny.cv.net [167.206.4.197]) by mx1.freebsd.org (Postfix) with ESMTP id B7AEC8FC2E for ; Thu, 12 Feb 2009 12:02:54 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from flosoft.no-ip.biz (ool-435559b8.dyn.optonline.net [67.85.89.184]) by mta2.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007)) with ESMTP id <0KEY00LF2AQSEGQ0@mta2.srv.hcvlny.cv.net> for freebsd-java@freebsd.org; Thu, 12 Feb 2009 06:32:53 -0500 (EST) Received: from flosoft.no-ip.biz (localhost [IPv6:::1]) by flosoft.no-ip.biz (8.14.3/8.14.3) with ESMTP id n1CBWoO4000690; Thu, 12 Feb 2009 06:32:51 -0500 Date: Thu, 12 Feb 2009 06:32:50 -0500 From: "Aryeh M. Friedman" In-reply-to: <49928B75.5090307@jp.freebsd.org> To: Daichi GOTO Message-id: <499408E2.8060708@gmail.com> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT References: <49920439.8010208@getsnappy.com> <49928B75.5090307@jp.freebsd.org> User-Agent: Thunderbird 2.0.0.19 (X11/20090202) Cc: Brian Gardner , freebsd-java@freebsd.org Subject: Re: openjdk6 port complete and ready for testing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2009 12:03:25 -0000 Daichi GOTO wrote: > There is awesome great respect for your work, Brian! > > I want to join your port test, would you please > mail me openjdk6 port. > Thanks > > Brian Gardner wrote: >> I've completed creating the following ports: >> java/openjdk6 and java/icedtea6-stubs (needed by java/openjdk6). >> This port will probably only function properly for amd64, and there >> are probably some dependency issues. I've been grinding (load >> testing) this port over the weekend with some serious concurrency and >> it's held its own. We released this port to a production machine >> today as well without any hickups so far. >> I'd appreciate any help in testing the port and openjdk6 and patching >> it to support all other architectures. Anybody interested please >> email me, and I'll email you the zipped up ports. >> _______________________________________________ >> freebsd-java@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-java >> To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" > Same here (if anyone knows how to inject a file into a local cvsup repo is [I already have a semi-public cvsup server and would be willing to serve a testing cvsup version from there).... I am a i386 person so it is likelly to be that I am going to migrate from java/jdk16 (sun update 7 I think) and a very heavy mysql<---->tomcat6 config From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 00:00:38 2009 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C84F106566B for ; Fri, 13 Feb 2009 00:00:38 +0000 (UTC) (envelope-from bounces+410502.1022366725.1767738@icpbounce.com) Received: from drone2.rtp.icpbounce.com (drone2.rtp.icpbounce.com [74.202.227.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1132A8FC13 for ; Fri, 13 Feb 2009 00:00:37 +0000 (UTC) (envelope-from bounces+410502.1022366725.1767738@icpbounce.com) Received: from localhost.localdomain (localhost [127.0.0.1]) by drone2.rtp.icpbounce.com (Postfix) with ESMTP id C747244252 for ; Thu, 12 Feb 2009 17:24:04 -0500 (EST) Date: Thu, 12 Feb 2009 17:24:04 -0500 To: java@freebsd.org From: Geiger Associates Heating and Air Message-ID: <124a585fbae8e81cf48f5ddb5f9ebfac@localhost.localdomain> X-Priority: 3 X-Mailer: PHPMailer [version 1.72] Errors-To: bounces+410502.1022366725.1767738@icpbounce.com X-List-Unsubscribe: X-Unsubscribe-Web: X-ICPINFO: X-Return-Path-Hint: bounces+410502.1022366725.1767738@icpbounce.com MIME-Version: 1.0 Content-Type: text/plain; charset = "iso-8859-1" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Learn how to save up to 30% on your monthly energy bill! X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2009 00:00:38 -0000 If you are having trouble viewing this message, please go to http://community.icontact.com/p/geigerassociates/newsletters/energy-saverorg/rss.xml And we can also show you how to easily earn a few hundred dollars a month...even in this troubled economy! No work or investment needed. Just a casual conversation with any homeowner can add to profits. The average homeowner is scrambling for ways to cut everyday costs just to make ends meet. As a professional and homeowner, you know how heating and cooling expenses can hurt anyone's wallet. And with a market hit very hard, you have an opportunity to earn an extra income that can make a real difference for yourself and others. Our energy misers are saving the average homeowner up to 30% a month. We can provide a brief informal demo and show you how to earn a nice profit just by word of mouth. See below for details! or Request a free starter kit today. For every referral that leads to a sale, you will earn $200 for every Heat/Air upgrade, $100 for every electric meter miser and $50 for all other energy misers! Contact us for personal discounts on your own miser and or heating cooling system upgrade. Visit energy-saver.org for more information This message was sent by: Tim Geiger, 11 Cross Keys Road, Collegeville, Pa 19462 Powered by iContact: http://freetrial.icontact.com Manage your subscription: http://app.icontact.com/icp/mmail-mprofile.pl?r=1022366725&l=49055&s=MNZ2&m=1767738&c=410502 Forward to a friend: http://app.icontact.com/icp/sub/forward?m=1767738&s=1022366725&c=MNZ2&cid=410502 Comment on this message in the iContact Community: http://community.icontact.com/p/geigerassociates/newsletters/energy-saverorg/posts/learn-how-to-save-up-to-30-on-your-monthly-energy-bill#commentform Receive our messages as an RSS feed: http://community.icontact.com/p/geigerassociates/newsletters/energy-saverorg/rss.xml?r=1022366725&l=49055&s=MNZ2&m=1767738&c=410502 From owner-freebsd-java@FreeBSD.ORG Fri Feb 13 14:12:43 2009 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE02E106566B for ; Fri, 13 Feb 2009 14:12:43 +0000 (UTC) (envelope-from mariomartin39@rapidmail.sytes.net) Received: from mail-qy0-f29.google.com (mail-qy0-f29.google.com [209.85.221.29]) by mx1.freebsd.org (Postfix) with ESMTP id 8F9348FC13 for ; Fri, 13 Feb 2009 14:12:43 +0000 (UTC) (envelope-from mariomartin39@rapidmail.sytes.net) Received: by mail-qy0-f29.google.com with SMTP id 10so80785qyk.19 for ; Fri, 13 Feb 2009 06:12:43 -0800 (PST) Received: by 10.224.2.138 with SMTP id 10mr3287859qaj.296.1234533464251; Fri, 13 Feb 2009 05:57:44 -0800 (PST) Received: from rapidmail.sytes.net ([190.48.3.178]) by mx.google.com with ESMTPS id 8sm198289qwj.56.2009.02.13.05.57.42 (version=SSLv3 cipher=RC4-MD5); Fri, 13 Feb 2009 05:57:43 -0800 (PST) Message-ID: From: "RapidMail" To: Date: Fri, 13 Feb 2009 11:57:24 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="WINDOWS-1252" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Ud. elige y decide cuando, cuanto y como... X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mariomartin39@rapidmail.sytes.net List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2009 14:12:44 -0000 Aprender ingl=E9s.=20 Aprendizaje Holistico=AE le propone hacerlo en un tiempo determinado, en = forma continua, todos los d=EDas, durante unas horas, en grupos reducidos, lo que reduce = la cantidad de horas=20 de clase a la mitad de lo empleado tradicionalmente, y le permite hablar = ingl=E9s en pocos=20 d=EDas, con un costo reducido=2E El m=E9todo de aprendizaje est=E1 dise=F1ado para quienes desean y = necesitan aprovechar su=20 tiempo, aprendiendo en forma r=E1pida, efectiva y manejarse bien con el = idioma, ya sea=20 por viajes, congresos, negocios, trabajos o por razones culturales=2E Cumpliendo con los requisitos m=EDnimos de asistencia, puntualidad y = compromiso grupal, lograr=E1 los objetivos de comunicarse en forma oral y escrita de acuerdo = al nivel realizado=2E Aproveche, consulte sobre nuestra super promo y descuentos de marzo! .... Consultar Si Ud. adquiere el curso y lo abona, pero quiere desistir, tiene el = derecho al reintegro del dinero abonado por las clases que no cursar=E1.=20 Si tiene dudas que te reintegremos el dinero, puede abonar por semana = adelantada=2E Salga de dudas curse los primeros 5 d=EDas y luego decida si contin=FAa. = M=E1s de 20.000=20 alumnos satisfechos Nos avalan..=2E Los cursos comienzan el jueves 5 de marzo=2E Ingl=E9s en 20 d=EDas?=20 (011) 4383-4412 de 10 a 19 hs=2E m=E1s informacion Pulse AQUI! y podremos informarte sobre las distintas promociones, las diferentes formas de = pago.=20 Te esperamos!! Departamento Alumnos=20 Nuestro lema es:=20 Cuando una persona m=E1s se r=EDe y m=E1s se equivoca m=E1s aprende.=20 26 a=F1os de experiencia en Superaprendizaje=AE, y 20.000 exalumnos,=20 Si desea eliminado del listado PULSE AQUI!