In a message dated 12/15/2004 10:21:45 AM Pacific Standard Time, [EMAIL PROTECTED] writes: Follow the link. He may have been suspended, although I don't see how he could have bid. Perhaps he bid early, then quit eBay or was suspended during the few days when the sale was ongoing.
The item could come up again. In fact I think I've seen this before. Joe =================== Had it happen to me once. The seller was suspended by ebay. Which meant I did not get the product. (Actually, I did because I contacted him privately, he mailed it, and it all went well.) He wasn't suspended because of his own actions, evidentially, but because someone hijacked his account. -- He had a high seller rating with high # of feedbacks -- But usually they are suspended because they are crooks. HTH, Doe aka Marnie From jeff Thu Dec 16 16:13:36 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:13:36 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:13:36 -0800 Received: from exprod5mx115.postini.com ([64.18.0.87] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyG0-0000di-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:13:36 -0800 Received: from source ([209.237.227.199]) by exprod5mx115.postini.com ([exprod5mx115.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:20 EST Received: (qmail 18778 invoked by uid 500); 16 Dec 2004 16:16:16 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk Reply-To: [EMAIL PROTECTED] list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 18730 invoked by uid 99); 16 Dec 2004 16:16:15 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=HTML_30_40,HTML_MESSAGE,MIME_BOUND_NEXTPART X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mail.elsag.de (HELO gateway.elsag.de) (134.98.65.18) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 16 Dec 2004 08:14:28 -0800 Received: from vwall.elsag.de by gateway.elsag.de via smtpd (for hermes.apache.org [209.237.227.199]) with SMTP; Thu, 16 Dec 2004 17:14:27 +0100 Received: from esmail by esmail via smtpd (for vwall.elsag.de [192.168.100.108]) with SMTP; Thu, 16 Dec 2004 16:58:03 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77" Subject: RE: Serializer- and Deserializer-objects multi-threaded? Date: Thu, 16 Dec 2004 16:58:03 +0100 Message-ID: <[EMAIL PROTECTED]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Serializer- and Deserializer-objects multi-threaded? Thread-Index: AcTh3C+GX6QwM7yjTs+RrJ8h8m+ZswBqxXXA From: "Martin Heitz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> X-Virus-Checked: Checked X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.2 required=4.0 tests=BAYES_00,HTML_FONTCOLOR_BLUE, HTML_MESSAGE,MIME_BOUND_NEXTPART autolearn=no version=2.64 This is a multi-part message in MIME format. ------=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C4E388.066AD0DC" ------_=_NextPart_001_01C4E388.066AD0DC Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, =20 I did a similar approach with not only pooling the SimpleDateFormats but complete Deserializers.=20 Now I recognize, that returning a complete Deserializer to its pool in the "onEndElement" method is a bad choice, because its value was not yet retrieved. Is it assured that getValue is called always? Then I could return the deserializer to the pool there (if some of them get lost because of parsing exceptions it does not harm my simple pool implementation, the pool is just used to reuse existing objects, but new ones will be created if it is empty). =20 Best regards and thanks for your hints and ideas, Mattin -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 1:55 PM To: [EMAIL PROTECTED] Subject: RE: Serializer- and Deserializer-objects multi-threaded? The deserializer factory creates the deserializer. You could have the deserializer factory set the date format object on the deserializer, before it gets returned o Axis to use for deserializing. In this way, the deserializer factory could maintain a list of SimpleDateFormat objects, marking each in use, as it is set in a deserializer. You'd have to figure out how to mark the object as no longer in use, perhaps by code in the onEndElement() method in the deserializer.=20 =09 I guess you could re-use complete deserializers in this way.=20 =09 Tony=20 =09 "Martin Heitz" <[EMAIL PROTECTED]> wrote on 14/12/2004 12:30:13: =09 > Hi,=20 > =20 > thanks for your answers.=20 > The reason for asking this is, that I have (de)serializers for a=20 > composed type which does not have a default constructor. So I need=20 > (as far as I understand the concept) at least a deserializer for=20 > rebuilding the object. One of the attributes of the object has the=20 > type dateTime, so I have a SimpleDateFormat to parse this. Sorrowly=20 > the SimpleDateFormat is quite expensive to create, so I do not want=20 > to create one for each parse process, but have a SimpleDateFormat=20 > class member in the deserializer to reuse it.=20 > Now the second "but": But the SimpleDateFormat is not thread-safe,=20 > it rarely occurrs that a runtime exception is thrown or that dates=20 > are not formatted correctly.=20 > If the deserializer is not used by multiple threads simultaneously I > do not have an issue here, but if it is shred I run into trouble.'=20 > =20 > If - as Brian J. Sayatovic writes - Axis gets a new instance each=20 > time from the factories my idea of improving performance by having a > SimpleDateFormat as class mebmber does not help anyway :-(=20 > =20 > Best regards from sunny Black Forrest, Germany,=20 > Mattin=20 > =20 > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 14, 2004 12:26 PM > To: [EMAIL PROTECTED] > Subject: Re: Serializer- and Deserializer-objects multi-threaded? =09 >=20 > I've never seen any reference to threads in descriptions of=20 > serializers and deserializers (Axis 1.1). Certainly, the=20 > BeanSerializer has no special code for handling multiple threads,=20 > that I can see. It looks as though a new serializer/deserializer is=20 > created, from the factory, each time a type needs to be processed in > the message. In any case, I can't quite see why you'd want to store=20 > state between calls to the serializer or deserializer, or store=20 > state in the de/serializer whilst processing a call. >=20 > Tony=20 >=20 > "Martin Heitz" <[EMAIL PROTECTED]> wrote on=20 > 14/12/2004 10:55:38: >=20 > > Hi, > >=20 > > short question: Are Axis Serializer- and Deserializer-objects shared by > > multiple threads (do they need to be thread-safe)? > >=20 > > My question relates to Axis 1.1, but (because upgrading to a newer > > release is always something one may not get out of sight) I am also > > interested in an answer for Axis 1.2. > >=20 > > Best regards from Black Forrest, Germany, > >=20 > > Martin Heitz > > Distributed Network Accounting Team > >=20 > > Elsag Solutions AG > > Roggenbachstr. 1 > > D-78050 Villingen-Schwenningen > > Germany > > http://www.elsag-solutions.com > > Tel: +49-(0)7721-9175-595 > > Fax: +49-(0)7721-9175-800 > > =20 > >=20 ------_=_NextPart_001_01C4E388.066AD0DC Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>Nachricht</TITLE> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <META content=3D"MSHTML 6.00.2800.1479" name=3DGENERATOR></HEAD> <BODY> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Hi,</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN> </DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>I did=20 a similar approach with not only pooling the SimpleDateFormats but = complete=20 Deserializers. </FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Now=20 I recognize, that returning a complete Deserializer to its pool in = the=20 "onEndElement" method is a bad choice, because its value was not yet=20 retrieved.</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Is it=20 assured that getValue is called always? Then I could return the = deserializer to=20 the pool there (if some of them get lost because of parsing exceptions = it does=20 not harm my simple pool implementation, the pool is just used to reuse = existing=20 objects, but new ones will be created if it is = empty).</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN> </DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Best=20 regards and thanks for your hints and ideas,</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2> Mattin</FONT></SPAN></DIV> <DIV></DIV> <DIV><FONT face=3DTahoma size=3D2>-----Original = Message-----<BR><B>From:</B>=20 [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] <BR><B>Sent:</B> = Tuesday,=20 December 14, 2004 1:55 PM<BR><B>To:</B>=20 [EMAIL PROTECTED]<BR><B>Subject:</B> RE: Serializer- and=20 Deserializer-objects multi-threaded?<BR><BR></DIV></FONT> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"><BR><FONT face=3DArial = size=3D2>The=20 deserializer factory creates the deserializer. You could have the = deserializer=20 factory set the date format object on the deserializer, before it gets = returned o Axis to use for deserializing. In this way, the = deserializer=20 factory could maintain a list of SimpleDateFormat objects, marking = each in=20 use, as it is set in a deserializer. You'd have to figure out how to = mark the=20 object as no longer in use, perhaps by code in the onEndElement() = method in=20 the deserializer.</FONT> <BR><BR><FONT face=3DArial size=3D2>I guess = you could=20 re-use complete deserializers in this way.</FONT> <BR><BR><FONT = face=3DArial=20 size=3D2>Tony</FONT> <BR><BR><FONT size=3D2><TT>"Martin Heitz"=20 <[EMAIL PROTECTED]> wrote on 14/12/2004=20 12:30:13:<BR><BR>> Hi,</TT></FONT> <BR><FONT size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> thanks for your = answers.=20 </TT></FONT><BR><FONT size=3D2><TT>> The reason for asking this is, = that I=20 have (de)serializers for a <BR>> composed type which does not have = a=20 default constructor. So I need <BR>> (as far as I understand the = concept)=20 at least a deserializer for <BR>> rebuilding the object. One of the = attributes of the object has the <BR>> type dateTime, so I have a=20 SimpleDateFormat to parse this. Sorrowly <BR>> the SimpleDateFormat = is=20 quite expensive to create, so I do not want <BR>> to create one for = each=20 parse process, but have a SimpleDateFormat <BR>> class member in = the=20 deserializer to reuse it.</TT></FONT> <BR><FONT size=3D2><TT>> Now = the second=20 "but": But the SimpleDateFormat is not thread-safe, <BR>> it rarely = occurrs=20 that a runtime exception is thrown or that dates <BR>> are not = formatted=20 correctly. </TT></FONT><BR><FONT size=3D2><TT>> If the deserializer = is not=20 used by multiple threads simultaneously I<BR>> do not have an issue = here,=20 but if it is shred I run into trouble.'</TT></FONT> <BR><FONT = size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> If - as Brian J. = Sayatovic writes=20 - Axis gets a new instance each <BR>> time from the factories my = idea of=20 improving performance by having a<BR>> SimpleDateFormat as class = mebmber=20 does not help anyway :-(</TT></FONT> <BR><FONT size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> Best regards from sunny = Black=20 Forrest, Germany,</TT></FONT> <BR><FONT size=3D2><TT>> =20 Mattin</TT></FONT> <BR><FONT size=3D2><TT>> = </TT></FONT>=20 <BR><FONT size=3D2><TT>> -----Original Message-----<BR>> = From:=20 [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] <BR>> Sent: = Tuesday,=20 December 14, 2004 12:26 PM<BR>> To: [EMAIL PROTECTED]<BR>> = Subject: Re: Serializer- and Deserializer-objects=20 multi-threaded?<BR></TT></FONT><BR><FONT size=3D2><TT>> <BR>> = I've never=20 seen any reference to threads in descriptions of <BR>> serializers = and=20 deserializers (Axis 1.1). Certainly, the <BR>> BeanSerializer has = no=20 special code for handling multiple threads, <BR>> that I can see. = It looks=20 as though a new serializer/deserializer is <BR>> created, from the = factory,=20 each time a type needs to be processed in<BR>> the message. In any = case, I=20 can't quite see why you'd want to store <BR>> state between calls = to the=20 serializer or deserializer, or store <BR>> state in the = de/serializer=20 whilst processing a call.<BR>> <BR>> Tony <BR>> <BR>> = "Martin=20 Heitz" <[EMAIL PROTECTED]> wrote on <BR>> = 14/12/2004=20 10:55:38:<BR>> <BR>> > Hi,<BR>> > <BR>> > short = question:=20 Are Axis Serializer- and Deserializer-objects shared by<BR>> > = multiple=20 threads (do they need to be thread-safe)?<BR>> > <BR>> > = My=20 question relates to Axis 1.1, but (because upgrading to a = newer<BR>> >=20 release is always something one may not get out of sight) I am = also<BR>>=20 > interested in an answer for Axis 1.2.<BR>> > <BR>> > = Best=20 regards from Black Forrest, Germany,<BR>> > <BR>> > Martin = Heitz<BR>> > Distributed Network Accounting Team<BR>> > = <BR>>=20 > Elsag Solutions AG<BR>> > Roggenbachstr. 1<BR>> > = D-78050=20 Villingen-Schwenningen<BR>> > Germany<BR>> >=20 http://www.elsag-solutions.com<BR>> > Tel: = +49-(0)7721-9175-595<BR>>=20 > Fax: +49-(0)7721-9175-800<BR>> > <BR>> >=20 </TT></FONT></BLOCKQUOTE></BODY></HTML> ------_=_NextPart_001_01C4E388.066AD0DC-- ------=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77-- From jeff Thu Dec 16 16:13:40 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:13:40 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:13:40 -0800 Received: from exprod5mx118.postini.com ([64.18.0.32] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyG4-0000e3-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:13:40 -0800 Received: from source ([207.44.196.87]) (using TLSv1) by exprod5mx118.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:23 EST Received: from [209.152.174.160] (helo=mail.zoneedit.com) by srv03.company-hosting.net with esmtp (Exim 4.43) id 1CeyIe-0000hY-GM for [EMAIL PROTECTED]; Thu, 16 Dec 2004 09:16:20 -0700 Received: from alias-4.c10-ave-mta2.cnet.com (alias-4.c10-ave-mta2.cnet.com [206.16.1.153]) by mail.zoneedit.com (Postfix) with ESMTP id 5D9163F4FB for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 11:15:22 -0500 (EST) X-sbi: newsalerts Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 08:15:17 -0800 (PST) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=1426257.1103213717152.JavaMail.app.c10-btg-harvest2.cnet.com From: CNET News.com Alerts <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: news | CNET News.com alert X-cPanel-MailScanner-Information: Please contact the ISP for more information X-cPanel-MailScanner: Not scanned: please contact your Internet E-Mail Service Provider for details X-cPanel-MailScanner-SpamCheck: X-MailScanner-From: [EMAIL PROTECTED] X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - srv03.company-hosting.net X-AntiAbuse: Original Domain - fesim.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - news-alerts.cnet.com X-Source: X-Source-Args: X-Source-Dir: X-pstn-levels: (S: 8.09752/99.71662 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 --1426257.1103213717152.JavaMail.app.c10-btg-harvest2.cnet.com Content-Type: text/plain Content-Transfer-Encoding: 7bit See all your alerts on the My Alerts page. CNET News.com -- Tech News First (http://www.news.com/) +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Blinkx unveils video search engine Need a dose of college bowl games or "Desperate Housewives"? TV search engine cues up online video. Thursday December 16, 2004 07:37AM PST http://news.com.com/Blinkx+unveils+video+search+engine/2100-1032_3-5493660.html?tag=alert ======== Edit: http://news.com.com/5232-8018-0.html?filterID=21354&alertID=21272 Cancel: http://news.com.com/5230-52-0.html?filterID=21354&alertID=21272&delete=true Feedback: http://feedback-alerts.news.com/ Create a new alert: http://alerts.news.com/ +++++++++++++++++++++++++++++++++++++++++++++++++++++++ Copyright 2004. CNET Networks 235 Second Street San Francisco, CA 94105 USA --1426257.1103213717152.JavaMail.app.c10-btg-harvest2.cnet.com-- From jeff Thu Dec 16 16:13:44 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:13:44 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:13:44 -0800 Received: from exprod5mx4.postini.com ([64.18.0.144] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyG8-0000eE-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:13:44 -0800 Received: from source ([209.237.227.199]) by exprod5mx4.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:16:27 PST Received: (qmail 18778 invoked by uid 500); 16 Dec 2004 16:16:16 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk Reply-To: [EMAIL PROTECTED] list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 18730 invoked by uid 99); 16 Dec 2004 16:16:15 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=HTML_30_40,HTML_MESSAGE,MIME_BOUND_NEXTPART X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mail.elsag.de (HELO gateway.elsag.de) (134.98.65.18) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 16 Dec 2004 08:14:28 -0800 Received: from vwall.elsag.de by gateway.elsag.de via smtpd (for hermes.apache.org [209.237.227.199]) with SMTP; Thu, 16 Dec 2004 17:14:27 +0100 Received: from esmail by esmail via smtpd (for vwall.elsag.de [192.168.100.108]) with SMTP; Thu, 16 Dec 2004 16:58:03 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77" Subject: RE: Serializer- and Deserializer-objects multi-threaded? Date: Thu, 16 Dec 2004 16:58:03 +0100 Message-ID: <[EMAIL PROTECTED]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Serializer- and Deserializer-objects multi-threaded? Thread-Index: AcTh3C+GX6QwM7yjTs+RrJ8h8m+ZswBqxXXA From: "Martin Heitz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> X-Virus-Checked: Checked X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.2 required=4.0 tests=BAYES_00,HTML_FONTCOLOR_BLUE, HTML_MESSAGE,MIME_BOUND_NEXTPART autolearn=no version=2.64 This is a multi-part message in MIME format. ------=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C4E388.066AD0DC" ------_=_NextPart_001_01C4E388.066AD0DC Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, =20 I did a similar approach with not only pooling the SimpleDateFormats but complete Deserializers.=20 Now I recognize, that returning a complete Deserializer to its pool in the "onEndElement" method is a bad choice, because its value was not yet retrieved. Is it assured that getValue is called always? Then I could return the deserializer to the pool there (if some of them get lost because of parsing exceptions it does not harm my simple pool implementation, the pool is just used to reuse existing objects, but new ones will be created if it is empty). =20 Best regards and thanks for your hints and ideas, Mattin -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 1:55 PM To: [EMAIL PROTECTED] Subject: RE: Serializer- and Deserializer-objects multi-threaded? The deserializer factory creates the deserializer. You could have the deserializer factory set the date format object on the deserializer, before it gets returned o Axis to use for deserializing. In this way, the deserializer factory could maintain a list of SimpleDateFormat objects, marking each in use, as it is set in a deserializer. You'd have to figure out how to mark the object as no longer in use, perhaps by code in the onEndElement() method in the deserializer.=20 =09 I guess you could re-use complete deserializers in this way.=20 =09 Tony=20 =09 "Martin Heitz" <[EMAIL PROTECTED]> wrote on 14/12/2004 12:30:13: =09 > Hi,=20 > =20 > thanks for your answers.=20 > The reason for asking this is, that I have (de)serializers for a=20 > composed type which does not have a default constructor. So I need=20 > (as far as I understand the concept) at least a deserializer for=20 > rebuilding the object. One of the attributes of the object has the=20 > type dateTime, so I have a SimpleDateFormat to parse this. Sorrowly=20 > the SimpleDateFormat is quite expensive to create, so I do not want=20 > to create one for each parse process, but have a SimpleDateFormat=20 > class member in the deserializer to reuse it.=20 > Now the second "but": But the SimpleDateFormat is not thread-safe,=20 > it rarely occurrs that a runtime exception is thrown or that dates=20 > are not formatted correctly.=20 > If the deserializer is not used by multiple threads simultaneously I > do not have an issue here, but if it is shred I run into trouble.'=20 > =20 > If - as Brian J. Sayatovic writes - Axis gets a new instance each=20 > time from the factories my idea of improving performance by having a > SimpleDateFormat as class mebmber does not help anyway :-(=20 > =20 > Best regards from sunny Black Forrest, Germany,=20 > Mattin=20 > =20 > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 14, 2004 12:26 PM > To: [EMAIL PROTECTED] > Subject: Re: Serializer- and Deserializer-objects multi-threaded? =09 >=20 > I've never seen any reference to threads in descriptions of=20 > serializers and deserializers (Axis 1.1). Certainly, the=20 > BeanSerializer has no special code for handling multiple threads,=20 > that I can see. It looks as though a new serializer/deserializer is=20 > created, from the factory, each time a type needs to be processed in > the message. In any case, I can't quite see why you'd want to store=20 > state between calls to the serializer or deserializer, or store=20 > state in the de/serializer whilst processing a call. >=20 > Tony=20 >=20 > "Martin Heitz" <[EMAIL PROTECTED]> wrote on=20 > 14/12/2004 10:55:38: >=20 > > Hi, > >=20 > > short question: Are Axis Serializer- and Deserializer-objects shared by > > multiple threads (do they need to be thread-safe)? > >=20 > > My question relates to Axis 1.1, but (because upgrading to a newer > > release is always something one may not get out of sight) I am also > > interested in an answer for Axis 1.2. > >=20 > > Best regards from Black Forrest, Germany, > >=20 > > Martin Heitz > > Distributed Network Accounting Team > >=20 > > Elsag Solutions AG > > Roggenbachstr. 1 > > D-78050 Villingen-Schwenningen > > Germany > > http://www.elsag-solutions.com > > Tel: +49-(0)7721-9175-595 > > Fax: +49-(0)7721-9175-800 > > =20 > >=20 ------_=_NextPart_001_01C4E388.066AD0DC Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD><TITLE>Nachricht</TITLE> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <META content=3D"MSHTML 6.00.2800.1479" name=3DGENERATOR></HEAD> <BODY> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Hi,</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN> </DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>I did=20 a similar approach with not only pooling the SimpleDateFormats but = complete=20 Deserializers. </FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Now=20 I recognize, that returning a complete Deserializer to its pool in = the=20 "onEndElement" method is a bad choice, because its value was not yet=20 retrieved.</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Is it=20 assured that getValue is called always? Then I could return the = deserializer to=20 the pool there (if some of them get lost because of parsing exceptions = it does=20 not harm my simple pool implementation, the pool is just used to reuse = existing=20 objects, but new ones will be created if it is = empty).</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2></FONT></SPAN> </DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2>Best=20 regards and thanks for your hints and ideas,</FONT></SPAN></DIV> <DIV><SPAN class=3D707395215-16122004><FONT face=3DArial color=3D#0000ff = size=3D2> Mattin</FONT></SPAN></DIV> <DIV></DIV> <DIV><FONT face=3DTahoma size=3D2>-----Original = Message-----<BR><B>From:</B>=20 [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] <BR><B>Sent:</B> = Tuesday,=20 December 14, 2004 1:55 PM<BR><B>To:</B>=20 [EMAIL PROTECTED]<BR><B>Subject:</B> RE: Serializer- and=20 Deserializer-objects multi-threaded?<BR><BR></DIV></FONT> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"><BR><FONT face=3DArial = size=3D2>The=20 deserializer factory creates the deserializer. You could have the = deserializer=20 factory set the date format object on the deserializer, before it gets = returned o Axis to use for deserializing. In this way, the = deserializer=20 factory could maintain a list of SimpleDateFormat objects, marking = each in=20 use, as it is set in a deserializer. You'd have to figure out how to = mark the=20 object as no longer in use, perhaps by code in the onEndElement() = method in=20 the deserializer.</FONT> <BR><BR><FONT face=3DArial size=3D2>I guess = you could=20 re-use complete deserializers in this way.</FONT> <BR><BR><FONT = face=3DArial=20 size=3D2>Tony</FONT> <BR><BR><FONT size=3D2><TT>"Martin Heitz"=20 <[EMAIL PROTECTED]> wrote on 14/12/2004=20 12:30:13:<BR><BR>> Hi,</TT></FONT> <BR><FONT size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> thanks for your = answers.=20 </TT></FONT><BR><FONT size=3D2><TT>> The reason for asking this is, = that I=20 have (de)serializers for a <BR>> composed type which does not have = a=20 default constructor. So I need <BR>> (as far as I understand the = concept)=20 at least a deserializer for <BR>> rebuilding the object. One of the = attributes of the object has the <BR>> type dateTime, so I have a=20 SimpleDateFormat to parse this. Sorrowly <BR>> the SimpleDateFormat = is=20 quite expensive to create, so I do not want <BR>> to create one for = each=20 parse process, but have a SimpleDateFormat <BR>> class member in = the=20 deserializer to reuse it.</TT></FONT> <BR><FONT size=3D2><TT>> Now = the second=20 "but": But the SimpleDateFormat is not thread-safe, <BR>> it rarely = occurrs=20 that a runtime exception is thrown or that dates <BR>> are not = formatted=20 correctly. </TT></FONT><BR><FONT size=3D2><TT>> If the deserializer = is not=20 used by multiple threads simultaneously I<BR>> do not have an issue = here,=20 but if it is shred I run into trouble.'</TT></FONT> <BR><FONT = size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> If - as Brian J. = Sayatovic writes=20 - Axis gets a new instance each <BR>> time from the factories my = idea of=20 improving performance by having a<BR>> SimpleDateFormat as class = mebmber=20 does not help anyway :-(</TT></FONT> <BR><FONT size=3D2><TT>>=20 </TT></FONT> <BR><FONT size=3D2><TT>> Best regards from sunny = Black=20 Forrest, Germany,</TT></FONT> <BR><FONT size=3D2><TT>> =20 Mattin</TT></FONT> <BR><FONT size=3D2><TT>> = </TT></FONT>=20 <BR><FONT size=3D2><TT>> -----Original Message-----<BR>> = From:=20 [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] <BR>> Sent: = Tuesday,=20 December 14, 2004 12:26 PM<BR>> To: [EMAIL PROTECTED]<BR>> = Subject: Re: Serializer- and Deserializer-objects=20 multi-threaded?<BR></TT></FONT><BR><FONT size=3D2><TT>> <BR>> = I've never=20 seen any reference to threads in descriptions of <BR>> serializers = and=20 deserializers (Axis 1.1). Certainly, the <BR>> BeanSerializer has = no=20 special code for handling multiple threads, <BR>> that I can see. = It looks=20 as though a new serializer/deserializer is <BR>> created, from the = factory,=20 each time a type needs to be processed in<BR>> the message. In any = case, I=20 can't quite see why you'd want to store <BR>> state between calls = to the=20 serializer or deserializer, or store <BR>> state in the = de/serializer=20 whilst processing a call.<BR>> <BR>> Tony <BR>> <BR>> = "Martin=20 Heitz" <[EMAIL PROTECTED]> wrote on <BR>> = 14/12/2004=20 10:55:38:<BR>> <BR>> > Hi,<BR>> > <BR>> > short = question:=20 Are Axis Serializer- and Deserializer-objects shared by<BR>> > = multiple=20 threads (do they need to be thread-safe)?<BR>> > <BR>> > = My=20 question relates to Axis 1.1, but (because upgrading to a = newer<BR>> >=20 release is always something one may not get out of sight) I am = also<BR>>=20 > interested in an answer for Axis 1.2.<BR>> > <BR>> > = Best=20 regards from Black Forrest, Germany,<BR>> > <BR>> > Martin = Heitz<BR>> > Distributed Network Accounting Team<BR>> > = <BR>>=20 > Elsag Solutions AG<BR>> > Roggenbachstr. 1<BR>> > = D-78050=20 Villingen-Schwenningen<BR>> > Germany<BR>> >=20 http://www.elsag-solutions.com<BR>> > Tel: = +49-(0)7721-9175-595<BR>>=20 > Fax: +49-(0)7721-9175-800<BR>> > <BR>> >=20 </TT></FONT></BLOCKQUOTE></BODY></HTML> ------_=_NextPart_001_01C4E388.066AD0DC-- ------=_NextPartTM-000-abf970ee-c6cb-4b52-a430-2f49236e2a77-- From jeff Thu Dec 16 16:13:55 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:13:55 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:13:55 -0800 Received: from exprod5mx87.postini.com ([64.18.0.75] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGJ-0000eY-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:13:55 -0800 Received: from source ([63.251.223.186]) by exprod5mx87.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:37 EST Received: (qmail 29107 invoked by uid 514); 16 Dec 2004 16:16:33 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 29098 invoked from network); 16 Dec 2004 16:16:33 -0000 Delivered-To: [EMAIL PROTECTED] X-Spam-Check-By: la.mx.develooper.com Received-SPF: neutral (x1.develooper.com: local policy) Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 08:16:22 -0800 From: Brad Greenlee <[EMAIL PROTECTED]> User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [EMAIL PROTECTED] Subject: Re: P2P in 15 lines References: <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-pstn-levels: (S:32.11021/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Doh! Somebody beat me to it. Didn't use IO::Socket either: http://developers.slashdot.org/article.pl?sid=04/12/15/1953227&tid=95&tid=156&tid=1 -b Sven Neuhaus wrote: > Can we beat them (in perl)? > http://www.freedom-to-tinker.com/tinyp2p.html From jeff Thu Dec 16 16:14:00 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:00 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:00 -0800 Received: from exprod5mx124.postini.com ([64.18.0.38] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGO-0000eh-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:00 -0800 Received: from source ([216.136.204.119]) by exprod5mx124.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:44 EST Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 20214577A8; Thu, 16 Dec 2004 16:16:38 +0000 (GMT) (envelope-from [EMAIL PROTECTED]) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 7040D16A4E0; Thu, 16 Dec 2004 16:16:37 +0000 (GMT) Delivered-To: [EMAIL PROTECTED] Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B6416A4CE; Thu, 16 Dec 2004 16:16:24 +0000 (GMT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E412D43D55; Thu, 16 Dec 2004 16:16:23 +0000 (GMT) (envelope-from [EMAIL PROTECTED]) Received: by smtp.des.no (Pony Express, from userid 666) id 2E30E5310; Thu, 16 Dec 2004 17:16:23 +0100 (CET) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 07B49530A; Thu, 16 Dec 2004 17:16:16 +0100 (CET) Received: by dwp.des.no (Postfix, from userid 2602) id DF3EEB874; Thu, 16 Dec 2004 17:16:15 +0100 (CET) To: Dmitry Morozovsky <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> From: [EMAIL PROTECTED] (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 16 Dec 2004 17:16:15 +0100 In-Reply-To: <[EMAIL PROTECTED]> (Dmitry Morozovsky's message of "Thu, 16 Dec 2004 01:16:03 +0300 (MSK)") Message-ID: <[EMAIL PROTECTED]> User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: duplicate CVS modules in merged CVSROOT X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD <freebsd-hackers.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-hackers>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.freebsd.org/pipermail/freebsd-hackers> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-hackers>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:74.43484/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Dmitry Morozovsky <[EMAIL PROTECTED]> writes: > It seems some checks should be added to module merging code... ...or somebody should stop using the merged CVSROOT. DES --=20 Dag-Erling Sm=F8rgrav - [EMAIL PROTECTED] _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]" From jeff Thu Dec 16 16:14:02 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:02 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:14:02 -0800 Received: from exprod5mx120.postini.com ([64.18.0.34] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGQ-0000f9-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:14:02 -0800 Received: from source ([70.84.9.187]) (using TLSv1) by exprod5mx120.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 10:16:45 CST Received: from www.mythtv.org (localhost [127.0.0.1]) by www.mythtv.org (8.13.1/8.13.1/Debian-14) with ESMTP id iBGG1rUu023980; Thu, 16 Dec 2004 16:02:28 GMT Received: from beam.beamnet (portal.beam.ltd.uk [62.49.82.227]) by www.mythtv.org (8.13.1/8.13.1/Debian-14) with ESMTP id iBGFwLdZ023635 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 15:58:22 GMT Received: from [192.168.1.1] (beam.beamnet [192.168.1.1]) (authenticated bits=0) by beam.beamnet (8.12.11/8.12.11) with ESMTP id iBGFwKc6017848 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 15:58:20 GMT Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 15:58:20 +0000 From: Terry Barnaby <[EMAIL PROTECTED]> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040922 X-Accept-Language: en, en-us MIME-Version: 1.0 To: [EMAIL PROTECTED] X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Subject: [mythtv-users] Adding extra recorder disk space for Christmas ! X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Discussion about mythtv <[EMAIL PROTECTED]> List-Id: Discussion about mythtv <mythtv-users.mythtv.org> List-Unsubscribe: <http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://mythtv.org/pipermail/mythtv-users> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users>, <mailto:[EMAIL PROTECTED]> Content-Type: multipart/mixed; boundary="===============1485172320==" Mime-version: 1.0 Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:69.65012/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 --===============1485172320== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, I would like to add an extra disk, temporarily, to my server for Christmas recording storage. I would like to do something like add multiple directororys to the MythTv "Directory to hold recordings" setting like: /data/video:/extra/video Has anyone any ideas on how to easily do this ? This is temporary, and so I don't want to get involved in raid etc etc Cheers Terry --===============1485172320== Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline _______________________________________________ mythtv-users mailing list [EMAIL PROTECTED] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users --===============1485172320==-- From jeff Thu Dec 16 16:14:06 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:06 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:14:06 -0800 Received: from exprod5mx127.postini.com ([64.18.0.41] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGU-0000fS-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:14:06 -0800 Received: from source ([155.38.5.31]) by exprod5mx127.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:16:49 PST Received: from unknown(155.38.5.31) by hommelator.edc.org via csmap id 921ef140_4f7f_11d9_9492_00304828b4e0_18126; Thu, 16 Dec 2004 11:28:52 -0500 (EST) Received: from milhouse.edc.org (localhost.localdomain [127.0.0.1]) by milhouse.edc.org (8.12.11/8.12.11) with ESMTP id iBGEvtSu012475; Thu, 16 Dec 2004 10:12:17 -0500 Received: from notesmta.edc.org (plato.edc.org [155.38.5.41]) by milhouse.edc.org (8.12.11/8.12.11) with ESMTP id iBGEvst4012472 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 09:57:54 -0500 Received: from hommelator.edc.org ([68.163.135.40]) by edc_1.edc.org (Lotus Domino Release 5.0.12) with ESMTP id 2004121609592603:6736 ; Thu, 16 Dec 2004 09:59:26 -0500 Received: from pool-68-163-135-40.bos.east.verizon.net(68.163.135.40) by hommelator.edc.org via csmap id 87e2f3b2_4f74_11d9_8047_00304828b4e0_29157; Thu, 16 Dec 2004 10:09:51 -0500 (EST) Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 09:57:47 -0500 From: Andy Carvin <[EMAIL PROTECTED]> Organization: Center for Media & Community User-Agent: Mozilla Thunderbird 0.8 (Macintosh/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: [EMAIL PROTECTED] X-NAI-Spam-Score: -2.5 X-MIMETrack: Itemize by SMTP Server on edc_1/EDC(Release 5.0.12 |February 13, 2003) at 12/16/2004 09:59:26 AM, Serialize by Router on NOTESMTA/EDC(Release 6.5.2|June 01, 2004) at 12/16/2004 09:57:38 AM, Serialize complete at 12/16/2004 09:57:38 AM Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-8859-1; format=flowed Cc: Subject: [DDN] Literacy research question on the DDN discussion boards X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The Digital Divide Network discussion group <[EMAIL PROTECTED]> List-Id: The Digital Divide Network discussion group <digitaldivide.mailman.edc.org> List-Unsubscribe: <http://mailman.edc.org/mailman/listinfo/digitaldivide>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://mailman.edc.org/pipermail/digitaldivide> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://mailman.edc.org/mailman/listinfo/digitaldivide>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 I'm forwarding this to the list for Cedar... -ac What's happening on the DDN discussion boards lately? On the Literacy & Learning discussion, Carrie Hammerman, a policy analyst with Cyber-State, asks: Hello all, I am interested in learning if there are others that are engaging in research on the topic of low literacy individuals and their access to information online. Within my organization, we are developing a project to address this issue, particularly as it relates to nonprofit, government, education and other organizations in the "public interest" that offer websites. I just want to make sure I haven't missed a large pocket of research that may have been done elsewhere. Thanks so much, Carrie To respond, visit her post at: http://www.digitaldivide.net/discussion/viewtopic.php?p=51 and click "post reply." You'll have to be logged into the DDN website to post your reply. The DDN discussion boards also cover ground on the help boards (where RSS feeds are the topic of the day) and the welcome wagon (where Ulla is reporting on the state of the digital divide in Germany). As always, feel free to send me questions or comments about the site and site content. We look forward to hearing from more of the great voices on this list on the boards. Thanks, Cedar -------------------------------------------------------- Cedar Pruitt Online Content Manager EDC Center for Media & Community http://cmc.edc.org cpruitt @ edc.org (617) 618-2185 --------------------------------------------------------- -- ----------------------------------- Andy Carvin Program Director EDC Center for Media & Community acarvin @ edc . org http://www.digitaldivide.net Blog: http://www.andycarvin.com ----------------------------------- _______________________________________________ DIGITALDIVIDE mailing list [EMAIL PROTECTED] http://mailman.edc.org/mailman/listinfo/digitaldivide To unsubscribe, send a message to [EMAIL PROTECTED] with the word UNSUBSCRIBE in the body of the message. From jeff Thu Dec 16 16:14:02 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:02 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:14:02 -0800 Received: from exprod5mx127.postini.com ([64.18.0.41] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGP-0000eu-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:14:02 -0800 Received: from source ([166.102.165.166]) by exprod5mx127.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 10:16:45 CST Received: from rbase.com ([162.39.22.25]) by ispmxmta09-srv.alltel.net with SMTP id <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 08:33:25 -0600 Date: Thu, 16 Dec 2004 09:30:14 -0500 From: Deb Roepken <[EMAIL PROTECTED]> Subject: [RBG7-L] - Re: Controlling DB Grid In-reply-to: <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] (RBG7-L Mailing List) MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal X-MDRcpt-To: [EMAIL PROTECTED] X-Return-Path: [EMAIL PROTECTED] X-MDaemon-Deliver-To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] Precedence: bulk Message-Id: <[EMAIL PROTECTED]> X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-1.7 required=4.0 tests=BAYES_00,FORGED_MUA_OIMO, RCVD_IN_NJABL_RELAY autolearn=no version=2.64 Thank you Razzak, where can I get RRBYW9? Deb Roepken cmri 631-587-1495 -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of A. Razzak Memon Sent: Thursday, December 16, 2004 9:06 AM To: RBG7-L Mailing List Subject: [RBG7-L] - Re: Controlling DB Grid At 08:01 AM 12/16/2004 -0500, Deb Roepken wrote: >I need to learn some more about the DB Grid and >how to capture control. I would like to use >buttons at the top of the grid for this control. >Are there any properties I can start using for >this. One example might be in the older dos vers. >I would use shift F9 to replace a column value; >however, of course this was in the browser. How >do I obtain browser capabilities in DB Grid? Deb, Here're a few tips to get started and to understand the DB Grid control in R:BASE 7.1 for Windows: 01. Make sure that you're using the latest build of R:BASE 7.1 for Windows Latest Build: 7.1.79.31215 http://www.rcornucopia.com/login.php 02. From The Edge: Understanding DB Grid EEPs in R:BASE http://www.razzak.com/fte Topic Header: GRID | Search 03. From The Edge: Understanding Form System Variables http://www.razzak.com/fte Topic Header: SYSTEM | Search 04. ConComp Sample Database Related Forms: . DBGridAndListBoxes . DBGridAndNavigator . DBGridCustomColumn . SplitterDemo . SplitterDemo01 05. Running R:BASE Your Way! (Part 8) Database: RRBYW8 Related Form: .SalesTransactions Make sure to RUN GlobalVars.RMD to pre-define all global variables used in that form 06. Running R:BASE Your Way! (Part 9) Database: RRBYW9 Related Forms: . CustContAndSales . SalesTransactions . SalesTransactions2 Make sure to RUN GlobalVars.RMD to pre-define all global variables used in that form Hope that helps! Should you need more samples, feel free to ask. Very Best R:egards, Razzak. From jeff Thu Dec 16 16:14:01 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:01 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:14:01 -0800 Received: from exprod5mx120.postini.com ([64.18.0.34] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGP-0000es-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:14:01 -0800 Received: from source ([70.84.9.187]) (using TLSv1) by exprod5mx120.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 10:16:45 CST Received: from www.mythtv.org (localhost [127.0.0.1]) by www.mythtv.org (8.13.1/8.13.1/Debian-14) with ESMTP id iBGG7MbW024821; Thu, 16 Dec 2004 16:07:58 GMT Received: from cgi.jachomes.com (cgi.jachomes.com [216.85.69.3]) by www.mythtv.org (8.13.1/8.13.1/Debian-14) with SMTP id iBGG4fwa024361 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 16:04:41 GMT Received: (qmail 23745 invoked by uid 500); 16 Dec 2004 16:04:38 -0000 Date: Thu, 16 Dec 2004 11:04:38 -0500 From: "Jay R. Ashworth" <[EMAIL PROTECTED]> To: Discussion about mythtv <[EMAIL PROTECTED]> Subject: Re: [mythtv-users] How to add more recording disk space: Christmas iscoming ! Message-ID: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Mime-Version: 1.0 User-Agent: Mutt/1.2.5.1i In-Reply-To: <[EMAIL PROTECTED]>; from Phill Edwards <[EMAIL PROTECTED]> on Thu, Dec 16, 2004 at 09:24:43PM +1100 Organization: Ashworth & Associates, St Pete FL USA X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Discussion about mythtv <[EMAIL PROTECTED]> List-Id: Discussion about mythtv <mythtv-users.mythtv.org> List-Unsubscribe: <http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://mythtv.org/pipermail/mythtv-users> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users>, <mailto:[EMAIL PROTECTED]> Content-Type: multipart/mixed; boundary="===============0467261962==" Mime-version: 1.0 Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:59.92185/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 --===============0467261962== Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Dec 16, 2004 at 09:24:43PM +1100, Phill Edwards wrote: > Would a symlink work Install the the new disk, move existing recordings onto > it. Make /data/video a symlink to the appropriate dir on your new disk. When > it's all over just change te symlink back to a real dir and move your > recordings back. > > That nice 'n' easy and should work, shouldn't it? Actually, I don't think it will really do what the original poster wanted. What *might* do it is a thing called a 'translucent' filesystem, for which, google. :-) Cheers, -- jra -- Jay R. Ashworth [EMAIL PROTECTED] Designer Baylink RFC 2100 Ashworth & Associates The Things I Think '87 e24 St Petersburg FL USA http://baylink.pitas.com +1 727 647 1274 If you can read this... thank a system adminstrator. Or two. --me --===============0467261962== Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline _______________________________________________ mythtv-users mailing list [EMAIL PROTECTED] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users --===============0467261962==-- From jeff Thu Dec 16 16:14:17 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:17 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:17 -0800 Received: from exprod5mx53.postini.com ([64.18.0.232] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGe-0000g6-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:16 -0800 Received: from source ([209.237.227.199]) by exprod5mx53.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:00 EST Received: (qmail 21650 invoked by uid 500); 16 Dec 2004 16:16:57 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Post: <mailto:[EMAIL PROTECTED]> List-Id: "Lucene Users List" <lucene-user.jakarta.apache.org> Reply-To: "Lucene Users List" <[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 21616 invoked by uid 99); 16 Dec 2004 16:16:56 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mta4.swift.com (HELO besec551.swift.com) (194.78.35.134) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 16 Dec 2004 08:15:06 -0800 Received: from bemigl01.swift.com (bemigl01 [172.24.34.41]) by besec551.swift.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id iBGGAurA026683 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 16:10:56 GMT Date: Thu, 16 Dec 2004 17:11:55 +0100 From: RADEMAKERS Tanguy <[EMAIL PROTECTED]> Subject: RE: building lucene-1.4.3 from source yields lucene-1.5-rc1-dev.jar? To: Lucene Users List <[EMAIL PROTECTED]> Message-id: <[EMAIL PROTECTED]> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft Exchange V6.0.6556.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Thread-Topic: building lucene-1.4.3 from source yields lucene-1.5-rc1-dev.jar? Thread-Index: AcTjfyYDR5UJrn5UTp2YrMZ35a3T8AAAxpOw content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: X-OriginalArrivalTime: 16 Dec 2004 16:11:55.0365 (UTC) FILETIME=[F6310950:01C4E389] X-MASF: 0.00% X-Virus-Checked: Checked X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Erik, Thank you for your answer. I unpacked my home built lucene-1.5-rc1-dev.jar and the binary download lucene-1.4.3.jar and ran WinMerge over them (it can tell if binary files are different) - results: the only differences are in the MANIFEST.MF file and they are pretty minimal. Just out of curiosity: what is the reasoning behind this setup? /t >-----Original Message----- >From: Erik Hatcher [mailto:[EMAIL PROTECTED] >Sent: Thursday, December 16, 2004 2:28 PM >To: Lucene Users List >Subject: Re: building lucene-1.4.3 from source yields >lucene-1.5-rc1-dev.jar? > >You have not erred. The build file has a version property set to >1.5-rc1-dev. If you want the JAR named something different, either >rename it after it is built or change the Ant property (using the -D >switch to ant). > >Maybe our source distributions should have the right version >built-in, >though it is currently intentional (I believe) - if you really >want the >exact lucene-1.4.3.jar, simply download the binary distribution >instead. > > Erik > > > > >On Dec 16, 2004, at 8:08 AM, RADEMAKERS Tanguy wrote: > >> Hail Listoids! >> >> I just started investigating lucene. I downloaded >lucene-1.4.3-src.zip, >> unzipped and built with ant, but i get some strange results: >> >> D:\scrap\java\lucene\lucene-1.4.3>ant >> Buildfile: build.xml >> >> init: >> [mkdir] Created dir: D:\scrap\java\lucene\lucene-1.4.3\build >> [mkdir] Created dir: D:\scrap\java\lucene\lucene-1.4.3\dist >> >> compile-core: >> [mkdir] Created dir: >> D:\scrap\java\lucene\lucene-1.4.3\build\classes\java >> [javac] Compiling 160 source files to >> D:\scrap\java\lucene\lucene-1.4.3\build\classes\java >> [rmic] RMI Compiling 1 class to >> D:\scrap\java\lucene\lucene-1.4.3\build\classes\java >> >> jar-core: >> [jar] Building jar: >> D:\scrap\java\lucene\lucene-1.4.3\build\lucene-1.5-rc1-dev.jar >> ------------------------------------------------------------------ >> ^^^^^^ >> ^^^^^^^^^^^^^^^^ >> default: >> >> BUILD SUCCESSFUL >> Total time: 19 seconds >> >> >> likewise the jar-demo target yields lucene-demos-1.5-rc1-dev.jar. >> >> Maybe i'm confused, but i was kind of expecting lucene-1.4.3.jar >> >> I will freely admit that i could have STFW a *bit* more >before sending >> this. If i have erred, smack me with a cluestick. >> >> /t >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] > > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] From jeff Thu Dec 16 16:14:03 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:03 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:03 -0800 Received: from exprod5mx125.postini.com ([64.18.0.39] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGR-0000fJ-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:03 -0800 Received: from source ([146.82.138.6]) by exprod5mx125.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:47 EST Received: from localhost (localhost [127.0.0.1]) by murphy.debian.org (Postfix) with QMQP id 978D52E41F; Thu, 16 Dec 2004 10:16:39 -0600 (CST) Old-Return-Path: <[EMAIL PROTECTED]> X-Original-To: [EMAIL PROTECTED] Received: from grerelbul01.net.external.hp.com (grerelbul01.net.external.hp.com [155.208.255.36]) by murphy.debian.org (Postfix) with ESMTP id 2B7822E416 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:16:38 -0600 (CST) Received: from concerto.grenoble.hp.com (concerto.grenoble.hp.com [15.128.15.118]) by grerelbul01.net.external.hp.com (Postfix) with ESMTP id 02D1038685; Thu, 16 Dec 2004 17:17:03 +0100 (CET) Received: from komarr.grenoble.hp.com ([EMAIL PROTECTED] [15.128.128.11]) by concerto.grenoble.hp.com (8.9.3 (PHNE_28760_binary)/8.9.3 SMKit6.0.6 OpenMail) with ESMTP id RAA29486; Thu, 16 Dec 2004 17:16:37 +0100 (MET) Received: from domi by komarr.grenoble.hp.com with local (Exim 4.34) id 1CeyIu-0000JI-O6; Thu, 16 Dec 2004 17:16:36 +0100 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: videoconferencing tools References: <[EMAIL PROTECTED]> From: Dominique Dumont <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 17:16:36 +0100 In-Reply-To: <[EMAIL PROTECTED]> ([EMAIL PROTECTED]'s message of "Thu, 16 Dec 2004 14:19:49 +0100") Message-ID: <[EMAIL PROTECTED]> User-Agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SA-Exim-Connect-IP: <locally generated> X-SA-Exim-Mail-From: [EMAIL PROTECTED] X-SA-Exim-Scanned: No (on komarr.grenoble.hp.com); SAEximRunCond expanded to false X-Rc-Virus: 2004-10-30_01 X-Rc-Spam: 2004-08-29_01 Resent-Message-ID: <[EMAIL PROTECTED]> Resent-From: [EMAIL PROTECTED] X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/372507 X-Loop: [EMAIL PROTECTED] List-Id: <debian-user.lists.debian.org> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.debian.org/debian-user/> Precedence: list Resent-Sender: [EMAIL PROTECTED] Resent-Date: Thu, 16 Dec 2004 10:16:39 -0600 (CST) X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.1034 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0150) gt3 GT2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] Resent-Bcc: X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 alberto <[EMAIL PROTECTED]> writes: > I am starting up a videoconferencing project. > We would like to run a Master's course over the Internet. > We would ideally like to have audio/video streaming and some > interactive capabilities, maybe a whiteboard etc... > > Does anybody have experience in this field and is able to recommend me > some platform/projects that we may look into? VLC may help you in the video streaming part of your project. See http://videolan.org/ HTH -- Dominique Dumont "Delivering successful solutions requires giving people what they need, not what they want." Kurt Bittner -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] From jeff Thu Dec 16 16:14:14 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:14 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:14 -0800 Received: from exprod5mx85.postini.com ([64.18.0.73] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGc-0000fx-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:14 -0800 Received: from source ([131.118.94.2]) by exprod5mx85.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:52 EST X-Mailer: Lyris ListManager Web Interface Date: Thu, 16 Dec 2004 03:59:12 -0500 Subject: More on religious beliefs To: "Teaching in the Psychological Sciences" <[EMAIL PROTECTED]> From: "Allen Esterson" <[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> Reply-To: "Teaching in the Psychological Sciences" <[EMAIL PROTECTED]> Message-Id: <[EMAIL PROTECTED]> X-pstn-levels: (S:77.55500/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.2 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12 autolearn=no version=2.64 At this time of goodwill to all men, women, children, and animal companions, TIPSters will no doubt be moved by the plea for religious tolerance in the letter to the Daily Telegraph reproduced below. News item on the UK Census 2001: “Jedi Knights” are listed by the Office for National Statistics as the sixth most-popular religion in Britain. This is the result of a hoax in which 390,127 students, encouraged by an internet campaign, registered themselves as fictional characters in the Star Wars films. Daily Telegraph Letters 16 December 2004 Sir – I find it extremely offensive to see my belief system idly dismissed (News, Dec 13). To suggest that the Jedi Knights are fictitious is naive. Those who have the force flowing through them know that this is not the case. I knew nothing of any internet campaign and to suggest that my values are "tongue in cheek" is insensitive. My fellow Jedis and I identify ourselves with these values because they represent our outlook on how to conduct our lives more closely than any other religion. I have grown up with these values and embrace them wholeheartedly. I find your dismissal flippant and improper, and this saddens me. Who is to say that many others' religious figures are not fictitious? May the force be with you. Ben Glazebrook, Brighton -------------------------------- UK Census 2001: Religious beliefs – top 5 Christian 37,046,500 None 7,274,300 Muslim 1,546,600 Hindu 552,400 Jedi Knight 390,100 Allen Esterson --- You are currently subscribed to tips as: archive@jab.org To unsubscribe send a blank email to [EMAIL PROTECTED] From jeff Thu Dec 16 16:14:12 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:12 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:12 -0800 Received: from exprod5mx124.postini.com ([64.18.0.38] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGa-0000fd-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:12 -0800 Received: from source ([128.198.162.231]) (using TLSv1) by exprod5mx124.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:16:56 EST Received: from pikespeak.uccs.edu (localhost.localdomain [127.0.0.1]) by pikespeak.uccs.edu (8.12.8/8.12.8) with ESMTP id iBGGGjGY029463; Thu, 16 Dec 2004 09:16:50 -0700 Received: from web60408.mail.yahoo.com (web60408.mail.yahoo.com [216.109.118.191]) by pikespeak.uccs.edu (8.12.8/8.12.8) with SMTP id iBGGGiGX029457 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 09:16:44 -0700 Received: (qmail 99874 invoked by uid 60001); 16 Dec 2004 16:16:44 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=xQpUXtWba3z61h+Eu7zWkpZMa1onbCtGn6cEoOY81BStGw0Sx5vwNKMMnGUTtSyJbU/pmYyLoksklDyRKWzjii5jnEI2lRMrcGksaNLVc3/f3lf/meD/aoWuZJNvIgw4ESi1ZebfGJkjXS9GQh5+z6FauZ0/BF6KlOuuc/nXw00= ; Message-ID: <[EMAIL PROTECTED]> Received: from [128.103.177.90] by web60408.mail.yahoo.com via HTTP; Thu, 16 Dec 2004 16:16:44 GMT Date: Thu, 16 Dec 2004 16:16:44 +0000 (GMT) From: umesh sharma <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-387753348-1103213804=:99386" Content-Transfer-Encoding: 8bit Subject: [Assam] [Iepcohort2005-list] Google Search for Papers X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.1 Precedence: list List-Id: A Mailing list for people interested in Assam from around the world <assam.pikespeak.uccs.edu> List-Unsubscribe: <http://pikespeak.uccs.edu/mailman/listinfo/assam>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://pikespeak.uccs.edu/pipermail/assam> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://pikespeak.uccs.edu/mailman/listinfo/assam>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,HTML_MESSAGE autolearn=ham version=2.64 --0-387753348-1103213804=:99386 Content-Type: multipart/alternative; boundary="0-30055472-1103213804=:99386" --0-30055472-1103213804=:99386 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Note: forwarded message attached. --------------------------------- ALL-NEW Yahoo! Messenger - all new features - even more fun! --0-30055472-1103213804=:99386 Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit <DIV><BR><BR>Note: forwarded message attached.</DIV><p> <hr size=1> <font size="2" face="Verdana, Arial, Helvetica, sans-serif"><a href="http://uk.rd.yahoo.com/evt=21626/*http://uk.messenger.yahoo.com"><strong><font face="Arial, Helvetica, sans-serif">ALL-NEW Yahoo! Messenger</font></strong></a><font face="Arial, Helvetica, sans-serif"><strong> - all new features - even more fun!</strong></font><strong><font color="#FF9900"> </font></strong></font> --0-30055472-1103213804=:99386-- --0-387753348-1103213804=:99386 Content-Type: message/rfc822 Content-Transfer-Encoding: 8bit X-Apparently-To: [EMAIL PROTECTED] via 216.109.118.186; Wed, 15 Dec 2004 22:02:26 -0800 Authentication-Results: mta137.mail.re2.yahoo.com from=gse.harvard.edu; domainkeys=neutral (no sig) X-Originating-IP: [128.103.178.24] Return-Path: <[EMAIL PROTECTED]> Received: from 128.103.178.24 (EHLO gse.harvard.edu) (128.103.178.24) by mta137.mail.re2.yahoo.com with SMTP; Wed, 15 Dec 2004 22:02:26 -0800 Received: from <[EMAIL PROTECTED]> by gse.harvard.edu (CommuniGate Pro RULES 4.2.5) with RULES id 16242079; Thu, 16 Dec 2004 01:02:20 -0500 X-Autogenerated: Mirror Resent-From: <[EMAIL PROTECTED]> Resent-Date: Thu, 16 Dec 2004 01:02:20 -0500 Received: from [127.0.0.1] (HELO gse.harvard.edu) by gse.harvard.edu (CommuniGate Pro SMTP 4.2.5) with ESMTP id 16242075; Thu, 16 Dec 2004 01:02:20 -0500 Received: from [151.203.223.128] (account [EMAIL PROTECTED]) by gse.harvard.edu (CommuniGate Pro WebUser 4.2.5) with HTTP id 16242054 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 01:02:17 -0500 From: "Paul Ham" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Mailer: CommuniGate Pro WebUser Interface v.4.2.5 Date: Thu, 16 Dec 2004 01:02:17 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format="flowed" Content-Transfer-Encoding: 8bit Cc: Subject: [Iepcohort2005-list] Google Search for Papers X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.2 Precedence: list List-Id: <iepcohort2005-list.gse.harvard.edu> List-Unsubscribe: <http://gse.harvard.edu/mailman/listinfo/iepcohort2005-list>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://gse.harvard.edu/mailman/private/iepcohort2005-list> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://gse.harvard.edu/mailman/listinfo/iepcohort2005-list>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Content-Length: 914 Sorry for the spam, but: This may be old news to everyone, but a week or so ago Google released a new search engine for "scholarly literature" (paper, theses, dissertations): http://scholar.google.com/ This might be helpful when trying to find up-to-date information! Caveat: It's still in "beta", i.e., still working out the kinks. (Selfish plug: In February, my project with the Harvard Law School will release a new version of its discussion/syllabi web site with resources and capabilities of on-line knowledge-creation and social networking. If you don't mind, I'll keep the group up-to-date with that.) Paul Ed.M. '05, International Education Policy, Harvard Graduate School of Education http://gseacademic.harvard.edu/~hampa/ _______________________________________________ Iepcohort2005-list mailing list [EMAIL PROTECTED] http://gse.harvard.edu/mailman/listinfo/iepcohort2005-list --0-387753348-1103213804=:99386 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Assam mailing list [EMAIL PROTECTED] http://pikespeak.uccs.edu/mailman/listinfo/assam Mailing list FAQ: http://pikespeak.uccs.edu/assam/assam-faq.html To unsubscribe or change options: http://pikespeak.uccs.edu/mailman/options/assam --0-387753348-1103213804=:99386-- From jeff Thu Dec 16 16:14:12 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:12 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:12 -0800 Received: from exprod5mx7.postini.com ([64.18.0.147] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGa-0000fb-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:12 -0800 Received: from source ([156.21.1.21]) by exprod5mx7.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:16:55 PST Received: from alpha.ipswitch.com [216.104.149.100] by list.ipswitch.com with ESMTP (SMTPD32-8.12) id A5FCA020120; Thu, 16 Dec 2004 11:21:16 -0500 Received: from mart003 [216.104.149.3] by alpha.ipswitch.com with ESMTP (SMTPD32-8.13) id A5066F100F8; Thu, 16 Dec 2004 11:17:10 -0500 Message-ID: <[EMAIL PROTECTED]> From: "E. Shanbrom \(Ipswitch\)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Subject: Re: [IMail Forum] Imail running away with processor... whats up ? Date: Thu, 16 Dec 2004 11:17:10 -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.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Precedence: bulk Sender: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Hmm, POP doesn't send just retrieves..With the Holiday increase in spam it can tax you machine by just adding more overhead... Eric S ----- Original Message ----- From: "Darin Cox" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 16, 2004 9:59 AM Subject: Re: [IMail Forum] Imail running away with processor... whats up ? > Has there been an increase in message volume, spam or otherwise? > > With a recent increase in spam, we reached the point where we needed to up > the Delivery and Retry Threads for the Queue Manager. Not exactly sure why > this would affect POP sending, but it did in our case. > > As always, check the logs and the critical performance monitoring points > (e.g. CPU, RAM, disk IO, disk queue length, etc.) > > Darin. > > > ----- Original Message ----- > From: "Accram Network Operations" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, December 16, 2004 12:54 AM > Subject: [IMail Forum] Imail running away with processor... whats up ? > > > Hey all, > I inherited a network that used IMAIL as our mail server, then all > this stuff came along with the new suite that made me dislike IMAIL a little > more than I already did... However, I just have to work with it like I > suspect all of you do as well... > > Anyway, here is an issue I am having with the IMAIL server. > > We currently use IMAIL v 8.13, with your basic settings, pop, imap, > smtp, web cal, but no LDAP or messaging. > > About every 2-4 days one of our customers, without fail will call > into our NOC and ask us "are you having problems with the mail server, it's > running very slow". Initally I just kinda brushed it off, but now I am > starting to see it as well, Simply sending a text only e-mail can sometimes > take 30 seconds... and I am on a t-1 frame to our mail server, so I know a > 20k e-mail can fly on that type of pipe. > > The only resolution for this is to reboot the mail server, which > once I do this it runs perfectly fine for another couple days, then walla > back to square 1. We did have an issue where I was working on implementing > LDAP, but didn't get around to it and LDAP went WILD, so I shut it off and > jumped ship there. > > Does anyone have a thought on this issue, it's driving me crazy ! > > -rob > > > Happy Surfing, > > Rob Szkutak > Sr. Network Enginner > (602) 264.0288 x137 > Accram Inc. > > > --- > [This E-mail scanned for viruses by Declude Virus] > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ > Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/ > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ > Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/ > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/ From jeff Thu Dec 16 16:14:18 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:18 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:14:18 -0800 Received: from exprod5mx15.postini.com ([64.18.0.155] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyGg-0000fv-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:14:18 -0800 Received: from source ([69.16.138.164]) by exprod5mx15.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:16:57 PST Received: from [69.16.138.164] (localhost [127.0.0.1]) by lists.digium.com (Postfix) with ESMTP id 25DD72FF7CF; Thu, 16 Dec 2004 10:15:41 -0600 (CST) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from psmtp.com (exprod5mx119.postini.com [64.18.0.33]) by lists.digium.com (Postfix) with SMTP id AF93E2FF76D for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:15:37 -0600 (CST) Received: from source ([217.114.97.161]) by exprod5mx119.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:15:45 PST Received: from d594f08d.ftth.concepts.nl ([213.148.240.141] helo=spyker) by clio (inbound) with asmtp (Exim 3.35 #1 (Debian)) id 1CeyHu-0007CG-00; Thu, 16 Dec 2004 17:15:34 +0100 From: "Florian Overkamp" <[EMAIL PROTECTED]> To: "'Dipen Gandhi'" <[EMAIL PROTECTED]>, "'Asterisk Developers Mailing List'" <[EMAIL PROTECTED]> Subject: RE: [Asterisk-Dev] Executing two applications on same channel Date: Thu, 16 Dec 2004 17:15:00 +0100 Organization: ObSimRef BV MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcTjh/mL2tY/YzNPQ1a2HRLuKHjb+QAAj8/A X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <[EMAIL PROTECTED]> Message-Id: <[EMAIL PROTECTED]> X-ObSimRef-MailScanner-VirusCheck: Found to be clean X-ObSimRef-MailScanner-From: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 X-pstn-addresses: from <[EMAIL PROTECTED]> [65/3] Cc: X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Asterisk Developers Mailing List <[EMAIL PROTECTED]> List-Id: Asterisk Developers Mailing List <asterisk-dev.lists.digium.com> List-Unsubscribe: <http://lists.digium.com/mailman/listinfo/asterisk-dev>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.digium.com/pipermail/asterisk-dev> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://lists.digium.com/mailman/listinfo/asterisk-dev>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Hi, > -----Original Message----- > Is it possible to execute two different applications in two threads on > the same channel? What I want to do is to execute some code in > parallel with Dial, while the bridged call is going on. The parallel > thread is not going to use the channel for writing something. Just > needs to read some parameters. Can I spawn a thread from Dial and call > pbx_exec? You can create a workaround by using chan_local: Exten = 1,1,Dial(Local/[EMAIL PROTECTED]/n&Local/[EMAIL PROTECTED]) Exten = 2,1,Do thread 1 Exten = 3,1,Do thread 2 Best regards, Florian _______________________________________________ Asterisk-Dev mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-dev To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev From jeff Thu Dec 16 16:14:45 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:45 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:45 -0800 Received: from exprod5mx118.postini.com ([64.18.0.32] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyH7-0000gO-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:45 -0800 Received: from source ([63.251.223.186]) by exprod5mx118.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:29 EST Received: (qmail 27965 invoked by uid 514); 16 Dec 2004 16:10:49 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 27956 invoked from network); 16 Dec 2004 16:10:48 -0000 Delivered-To: [EMAIL PROTECTED] X-Spam-Check-By: la.mx.develooper.com Received-SPF: pass (x1.develooper.com: local policy) Date: Thu, 16 Dec 2004 17:10:36 +0100 Message-Id: <[EMAIL PROTECTED]> MIME-Version: 1.0 Subject: CPAN Upload: R/RJ/RJBS/Querylet-0.28.tar.gz Content-Type: Text/Plain; Charset=UTF-8 Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Content-Transfer-Encoding: 8bit From: PAUSE <[EMAIL PROTECTED]> X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 The uploaded file Querylet-0.28.tar.gz has entered CPAN as file: $CPAN/authors/id/R/RJ/RJBS/Querylet-0.28.tar.gz size: 25439 bytes md5: c5b163f355768c4014eff1c253c5041c No action is required on your part Request entered by: RJBS (Ricardo SIGNES) Request entered on: Thu, 16 Dec 2004 16:08:49 GMT Request completed: Thu, 16 Dec 2004 16:10:31 GMT Thanks, -- paused, v460 From jeff Thu Dec 16 16:14:59 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:14:59 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:14:59 -0800 Received: from exprod5mx5.postini.com ([64.18.0.145] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHL-0000gp-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:14:59 -0800 Received: from source ([146.82.138.6]) by exprod5mx5.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:43 EST Received: from localhost (localhost [127.0.0.1]) by murphy.debian.org (Postfix) with QMQP id D38072E44D; Thu, 16 Dec 2004 10:17:40 -0600 (CST) Old-Return-Path: <[EMAIL PROTECTED]> X-Original-To: [EMAIL PROTECTED] Received: from outbound1.logical.net (outbound1.logical.net [209.23.116.93]) by murphy.debian.org (Postfix) with ESMTP id 7108E2DEE3 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:17:39 -0600 (CST) Received: from buddy.mtntop.home (ip-209-23-31-32.modem.logical.net [209.23.31.32] (may be forged)) by outbound1.logical.net (8.12.11/8.12.11) with ESMTP id iBGGHUpw011612; Thu, 16 Dec 2004 11:17:31 -0500 Received: (Exim 3.36) protocol: local id 1CeyI1-0008Qw-00 ; Thu, 16 Dec 2004 11:15:41 -0500 Date: Thu, 16 Dec 2004 11:15:41 -0500 From: Wayne Topa <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Problem burning large files on DVD Message-ID: <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Mail-Followup-To: [EMAIL PROTECTED], [EMAIL PROTECTED] References: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> Organization: Patway Brittanys User-Agent: Mutt/1.5.6+20040907i X-Virus-Scanned: clamd / ClamAV version 0.75.1, clamav-milter version 0.75c on localhost X-Virus-Status: Clean X-Rc-Virus: 2004-10-30_01 X-Rc-Spam: 2004-08-29_01 Resent-Message-ID: <[EMAIL PROTECTED]> Resent-From: [EMAIL PROTECTED] X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/10960 X-Loop: [EMAIL PROTECTED] List-Id: <cdwrite.other.debian.org> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.debian.org/cdwrite/> Precedence: list Resent-Sender: [EMAIL PROTECTED] Resent-Date: Thu, 16 Dec 2004 10:17:40 -0600 (CST) X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:86.5533 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0150) gt3 GT2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Jeremy Monnet (Locatel)([EMAIL PROTECTED]) is reported to have said: > Hello, > > I've tried to subscribe to the Mailing list before sending, but I do not > receive the subscription confirm mail ... So please answer me directly > if possible (or anyway I'll read the archive ;o) ) > > So, my question is : how to write large files on DVD (files > 2 GB). > > What I've tried : use k3b, but with on-the-fly option, it does nothing, > and without it uses mkisofs. > Tried to generate the iso directly, but mkisofs tells me that the file > is too large (problem with iso9660 filesystem I believe ?). > Tried to attack directly growisofs ("growisofs -Z /dev/dvd -R -J > /my/big/file") but it uses also mkisofs, and then I burn an empty dvd ... > > Information on my system : debian full updated on unstable, growisofs > 5.21, mkisofs 2.01, k3b 0.11.17, kernel 2.4.27-1-686 or 2.6.9-1-686 > (I've tried with both with same result, now running 2.6.9) > As my first project with my new DVD burner I backed up my system using k3b. It was a 3.5G backup and everything I have checked shows it worked 100%. I did have to upgrade some of the kde packages from unstable to get it running correctly. Debian Testing/Unstable. :-) HTH, YMMV, HAND :-) Wayne -- Real Programmers think better when playing Adventure or Rogue. _______________________________________________________ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] From jeff Thu Dec 16 16:15:04 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:04 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:04 -0800 Received: from exprod5mx121.postini.com ([64.18.0.35] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHQ-0000h9-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:04 -0800 Received: from source ([63.251.223.186]) by exprod5mx121.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:48 EST Received: (qmail 28114 invoked by uid 514); 16 Dec 2004 16:11:07 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 28106 invoked from network); 16 Dec 2004 16:11:06 -0000 Delivered-To: [EMAIL PROTECTED] X-Spam-Check-By: la.mx.develooper.com Received-SPF: pass (x1.develooper.com: local policy) Date: Thu, 16 Dec 2004 17:10:57 +0100 Message-Id: <[EMAIL PROTECTED]> MIME-Version: 1.0 Subject: CPAN Upload: R/RJ/RJBS/Querylet-Output-Excel-XLS-0.13.tar.gz Content-Type: Text/Plain; Charset=UTF-8 Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Content-Transfer-Encoding: 8bit From: PAUSE <[EMAIL PROTECTED]> X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 The uploaded file Querylet-Output-Excel-XLS-0.13.tar.gz has entered CPAN as file: $CPAN/authors/id/R/RJ/RJBS/Querylet-Output-Excel-XLS-0.13.tar.gz size: 2339 bytes md5: 4fc0854f67e1714d4e723a84cac30d9f No action is required on your part Request entered by: RJBS (Ricardo SIGNES) Request entered on: Thu, 16 Dec 2004 16:09:48 GMT Request completed: Thu, 16 Dec 2004 16:10:55 GMT Thanks, -- paused, v460 From jeff Thu Dec 16 16:15:03 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:03 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:03 -0800 Received: from exprod5mx123.postini.com ([64.18.0.37] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHP-0000gy-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:03 -0800 Received: from source ([205.217.113.11]) by exprod5mx123.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:17:45 PST Received: from smtp105.rog.mail.re2.yahoo.com [206.190.36.83] by mail.bestware.biz (SMTPD32-8.01) id A56DB7900F0; Thu, 16 Dec 2004 10:18:53 -0600 Received: from unknown (HELO Ocb4) ([EMAIL PROTECTED] with login) by smtp105.rog.mail.re2.yahoo.com with SMTP; 16 Dec 2004 16:16:15 -0000 Message-ID: <[EMAIL PROTECTED]> From: "Lance Muir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Subject: Re: [TruthTalk] Intentional sin -- the Judas factor Date: Thu, 16 Dec 2004 11:12:44 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Precedence: bulk Sender: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 I could not have answered your question with more clarity. I am deeply saddened as a result of your lack of perception. What's not to understand in: 'David you are wrong'? 'Brevity', David, 'is the sould of wit'. Whatever gifts the Lord may have granted you, concision is not one of them. This, my scientistic acquaintance, IS A WORD TO THE WISE. ----- Original Message ----- From: "David Miller" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: December 16, 2004 10:58 Subject: Re: [TruthTalk] Intentional sin -- the Judas factor > David wrote to Lance: > >> What do you think Jesus meant by saying > >> that Judas is lost? > >> What do you think Jesus meant by calling him > >> the son of perdition? > > Lance wrote: > > Though I'm pleased that your software package > > serves you well, your 'reading' of Jesus, IMO, > > does not. > > Avoiding answering the questions again? > > I guess if truth is not always logical and reasonable, there is no reason to > consider the illogical nature of the views that one might hold. You just > choose to believe what you what to believe, I guess. I suppose that the > idea that "lost" does not mean "lost" is as valid a conclusion for you as > defining what the word "lost" is meant to communicate. For me, I am not > satisfied with an answer that says that Jesus did not mean lost when he said > lost. I need to hear what you think he meant. > > Peace be with you. > David Miller. > > > ---------- > "Let your speech be always with grace, seasoned with salt, that you may know how you ought to answer every man." (Colossians 4:6) http://www.InnGlory.org > > If you do not want to receive posts from this list, send an email to [EMAIL PROTECTED] and you will be unsubscribed. If you have a friend who wants to join, tell him to send an e-mail to [EMAIL PROTECTED] and he will be subscribed. ---------- "Let your speech be always with grace, seasoned with salt, that you may know how you ought to answer every man." (Colossians 4:6) http://www.InnGlory.org If you do not want to receive posts from this list, send an email to [EMAIL PROTECTED] and you will be unsubscribed. If you have a friend who wants to join, tell him to send an e-mail to [EMAIL PROTECTED] and he will be subscribed. From jeff Thu Dec 16 16:15:11 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:11 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:11 -0800 Received: from exprod5mx127.postini.com ([64.18.0.41] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHX-0000hV-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:11 -0800 Received: from source ([207.44.196.87]) (using TLSv1) by exprod5mx127.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:54 EST Received: from [216.40.250.211] (helo=mail2.zoneedit.com) by srv03.company-hosting.net with esmtp (Exim 4.43) id 1CeyK9-0000jf-8E for [EMAIL PROTECTED]; Thu, 16 Dec 2004 09:17:53 -0700 Received: from mproxy.googlegroups.com (mproxy.googlegroups.com [216.239.56.131]) by mail2.zoneedit.com (Postfix) with ESMTP id 3483434A5CA for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 11:16:49 -0500 (EST) Received: by mproxy.googlegroups.com with SMTP id s54so1027901cwc for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 08:16:31 -0800 (PST) Received: by 10.11.53.23 with SMTP id b23mr31496cwa; Thu, 16 Dec 2004 08:16:31 -0800 (PST) Subject: 25 new messages in 13 topics - digest From: "comp.lang.java.programmer group" <[EMAIL PROTECTED]> To: "comp.lang.java.programmer digest subscribers" <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 16:16:22 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Message-Id: <[EMAIL PROTECTED]> X-cPanel-MailScanner-Information: Please contact the ISP for more information X-cPanel-MailScanner: Not scanned: please contact your Internet E-Mail Service Provider for details X-cPanel-MailScanner-SpamCheck: X-MailScanner-From: [EMAIL PROTECTED] X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - srv03.company-hosting.net X-AntiAbuse: Original Domain - fesim.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - googlegroups.com X-Source: X-Source-Args: X-Source-Dir: X-pstn-levels: (S:91.70921/99.90000 R:95.9108 P:95.9108 M:94.1034 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 =20 comp.lang.java.programmer http://groups-beta.google.com/group/comp.lang.java.programmer [EMAIL PROTECTED] Today's topics: * what is a design pattern and a framework - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/94501b11b82cdbb2 * jsp, containers, beans and persistence - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/47085d2436bae214 * Struts Server-Side Form Validation - 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/e8d7503f3780d747 * Debugging ANT build scripts - 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/a174637837f5a523 * Algorithm, please help - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/8bcd7defb3cda029 * count file pages - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/e5a8a03f1b71d9c4 * performance of double checked locking - 3 messages, 2 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/6881393065d8371a * Communication between applets in seperate browswer windows? - 7 messages,= 4 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/4095d0c98d1e8cdf * Setting Java Virtual Memory - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/991635c2a770e75c * Calling Axis WebService out of .net Client - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/eaf2df6380fd7c0 * Threadsafe Timers? - 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/84b90615248a59bc * SCJP 5.0 Beta - 1 messages, 1 author http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/ccda6850cafec98b * Connection Pooling - c3p0 - Tomcat. - 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.java.programmer/browse_threa= d/thread/8bdefe9f4a95f2fb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: what is a design pattern and a framework http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/94501b11b82cdbb2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 1:40 pm From: Andrew Thompson =20 On Thu, 16 Dec 2004 13:20:05 +0100, Michael Borgwardt wrote: > IINET wrote: =2E. >> I use search=20 >> engines AND newsgroups, as do many people. >=20 > That's fine, as long as you use search engines *first* and ask on newsgro= ups > only if the search engine did not provide an adequate answer. Using a seach engine is not as easy as it seems, and most of us could benefit from search tips that others have discovered. What is the *exact* search string you used[1]? Why were the=20 hits not relevant? [1] ( Complete URL please) --=20 Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: jsp, containers, beans and persistence http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/47085d2436bae214 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 5:46 am From: "milkyway" =20 Hello, Thank you for the information. This clears up quite a bit for me ;-) Kind Regards. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Struts Server-Side Form Validation http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/e8d7503f3780d747 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 2 =3D=3D Date: Thurs, Dec 16 2004 6:04 am From: "timmac" =20 I'm hoping someone can help me with form validation using struts and the commons validator. I have everything set up, and as far as I can tell, it's identical to examples I've seen elsewhere. Client-side (javascript) validation works fine, but when I attempt server-side validation, it seems to perform no validation at all. Any ideas? The relevant portion of my struts-config.xml is: <form-beans> <form-bean name=3D"registerFormBean" type=3D"com.pixel.pool.RegisterFormBean" /> </form-beans> =2E.... <action path=3D"/register" forward=3D"/register.jsp" /> <action path=3D"/register-submit" type=3D"com.pixel.pool.Register" name=3D"registerFormBean" scope=3D"request" validate=3D"true" input=3D"input"> <forward name=3D"input" path=3D"/register.do" /> <forward name=3D"success" path=3D"/thankYou.jsp" /> </action> I have the RegisterFormBean class extending ValidatorForm as well. Anyone know what I'm missing? Thanks in advance, Tim MacDonald =3D=3D 2 of 2 =3D=3D Date: Thurs, Dec 16 2004 10:41 am From: Sudsy =20 timmac wrote: <snip> > I have the RegisterFormBean class extending ValidatorForm as well. > Anyone know what I'm missing? Do you have the plug-in defined in the struts-config.xml file? Do you have the field validations specified in one of the files named in the pathnames property? Sounds basic, I know, but these elements are essential... =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Debugging ANT build scripts http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/a174637837f5a523 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 2 =3D=3D Date: Thurs, Dec 16 2004 6:07 am From: "illusions" =20 Hello, I would like to know about the debugging capabilities of ANT. Basically I have an ANT build script written by a colleague and I wanted to step through each target to see what are the various tasks that are beings called. I tried using the -debug option but that output a whole lot of information without any pause. Could you suggest any other better method of debugging. Thaks, Swathi =3D=3D 2 of 2 =3D=3D Date: Thurs, Dec 16 2004 3:05 pm From: Collin VanDyck =20 illusions wrote: > Hello, > I would like to know about the debugging capabilities of ANT. Basically > I have an ANT build script written by a colleague and I wanted to step > through each target to see what are the various tasks that are beings > called. I tried using the -debug option but that output a whole lot of > information without any pause. Could you suggest any other better > method of debugging. > Thaks, > Swathi >=20 You could write a custom task that outputted some text to the console=20 and insert your task inside of each target with an appropriate message. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Algorithm, please help http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/8bcd7defb3cda029 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 2:25 pm From: "John B. Matthews" =20 In article <[EMAIL PROTECTED]>, "HS1" <[EMAIL PROTECTED]>=20 wrote: > Hello all >=20 > I have a vector that store answer objects. Each object has a question num= ber > and answer value that can be presented as following: > ----------------------------------------------- >=20 > Question number |Answer >=20 > 3 Y > 5 N > 8 Y > 10 N > .... .. >=20 > 3 Y > 5 N > 8 Y > 10 N > .. ... >=20 > 3 N > 5 Y > 8 Y > 10 N > ... .. >=20 > What I have to do is to determine how many percent answer is "Y" or "N" f= or > each question. > For example: >=20 > question 3: 13% yes and 87% no > question 5: 23% yes and 68% no >=20 > It can be seen that those objects are separated into groups and each has > same number of questions. I also have the list of question numbers (e.g: = 3, > 5, 8, 10...). >=20 > What is the best solution for this. Could you please help > [...] > I have this solution but it run many times through the vector of answer > objects Excellent! You have an algorithm, but you have observed that it=20 requires many passes through the vector to examine each element. You=20 wonder how to do the work in one pass. Assume n is the number of distinct question numbers. Instead of a=20 single variable to total the positive answers, consider an array,=20 indexed by question number: int[] yes =3D new int[n] Loop through the vector elements, one at a time. When an answer is=20 yes, increment that question number's entry in the yes array: yes[questionNumber] +=3D 1; After a single pass through the vector, yes will have the total=20 number of yes's for each question number. --=20 John jmatthews at wright dot edu www dot wright dot edu/~john.matthews/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: count file pages http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/e5a8a03f1b71d9c4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 9:42 am From: "juicy" =20 yes. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: performance of double checked locking http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/6881393065d8371a =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 3 =3D=3D Date: Thurs, Dec 16 2004 3:49 pm From: "Gerald Thaler" =20 Hello The double checked locking idiom (thread safe singelton pattern) now works= =20 correct under the current memory model: public class MySingleton { private static volatile MySingleton instance; public static MySingleton getInstance() { if (instance =3D=3D null) { synchronized (MySingleton.class) { if (instance =3D=3D null) { instance =3D new MySingleton(); } } } return instance; } } Nevertheless the Java experts still discourage its use, claiming that there= =20 would be no signifcant performance advantage over simply synchronizing the= =20 whole getInstance() method, as volatile variable accesses are similar to=20 (half) a synchronization. For example see:=20 http://www-106.ibm.com/developerworks/library/j-jtp03304/?ca=3Ddnt-513 [Br= ian=20 Goetz] But is this really true? IMHO the volatile read in the common code path=20 should be much more efficient than a monitor enter can be in any reasonable= =20 JVM implementation. All it has usually to do is to cross a read barrier=20 before the read of the variable 'instance'. This affects only one processor= =20 and will cost very few cycles if any. A monitor enter in contrast would=20 require a bus lock during a read-modify-write operation. This would stall= =20 every processor in the system. So my feeling is, that a monitor enter shoul= d=20 be much more expensive than a volatile read. The linked site above gives the following advice: "Instead of double-checked locking, use the Initialize-on-demand Holder=20 Class idiom, which provides lazy initialization, is thread-safe, and is=20 faster and less confusing than double-checked locking." I don't agree. First, the Initialize-on-demand Holder Class idiom doesn't= =20 garantee that the Singleton is not constructed until its first use. JVMs=20 have great freedom here. Second, if it does indeed lazy initialization, it= =20 can't be any faster than DCL, because it too has to cross at least one read= =20 barrier internally. Am i overlooking something here? =3D=3D 2 of 3 =3D=3D Date: Thurs, Dec 16 2004 3:38 pm From: "xarax" =20 "Gerald Thaler" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello > > The double checked locking idiom (thread safe singelton pattern) now works > correct under the current memory model: > > public class MySingleton { > > private static volatile MySingleton instance; > > public static MySingleton getInstance() { > if (instance =3D=3D null) { > synchronized (MySingleton.class) { > if (instance =3D=3D null) { > instance =3D new MySingleton(); > } > } > } > return instance; > } > } > > Nevertheless the Java experts still discourage its use, claiming that the= re > would be no signifcant performance advantage over simply synchronizing the > whole getInstance() method, as volatile variable accesses are similar to > (half) a synchronization. > > For example see: > http://www-106.ibm.com/developerworks/library/j-jtp03304/?ca=3Ddnt-513 [= Brian > Goetz] > > But is this really true? IMHO the volatile read in the common code path > should be much more efficient than a monitor enter can be in any reasonab= le > JVM implementation. All it has usually to do is to cross a read barrier > before the read of the variable 'instance'. This affects only one process= or > and will cost very few cycles if any. A monitor enter in contrast would > require a bus lock during a read-modify-write operation. This would stall > every processor in the system. So my feeling is, that a monitor enter sho= uld > be much more expensive than a volatile read. > > The linked site above gives the following advice: > > "Instead of double-checked locking, use the Initialize-on-demand Holder > Class idiom, which provides lazy initialization, is thread-safe, and is > faster and less confusing than double-checked locking." > > I don't agree. First, the Initialize-on-demand Holder Class idiom doesn't > garantee that the Singleton is not constructed until its first use. JVMs > have great freedom here. Second, if it does indeed lazy initialization, it > can't be any faster than DCL, because it too has to cross at least one re= ad > barrier internally. > > Am i overlooking something here? The main "problem" with DCL is that some JVM implementations are allowed to assign the value of "instance" before the constructor has finished. That is, the line: instance =3D new MySingleton(); Creates a new object, assigns the reference for that object to "instance", then calls the constructor. This makes the reference visible to other threads before the object is fully constructed. This behavior is described (vaguely) under "prescient stores" in the JVM/JLS specs. However, declaring the field "instance" as a volatile would seem to prevent that kind of behavior. A volatile field must be fetched/stored in exactly the same sequence as specified in the original source code (the compiler is not allowed to perform code movement). Another way to avoid the "prescient store" thing is to assign the reference to a local variable, then enter/exit a synchronized block after the constructor call, then assign the field. public class MySingleton { private static volatile MySingleton instance; public static MySingleton getInstance() { if(instance =3D=3D null) { synchronized (MySingleton.class) { if(instance =3D=3D null) { MySingleton foo; foo =3D new MySingleton(); /* ensure constructor is finished */ synchronized(foo) { instance =3D foo; } } } } return instance; } } The assignment of "foo" can legally occur "early" before the constructor is called. (Some compilers may place the constructor in-line immediately after the assignment.) However, entering the subsequent monitor block requires that the constructor is completely finished. Inside the monitor block it is safe to then assign the "instance" field. This is also a point of contention among the "experts", because monitor "entry" only flushes fetches and monitor "exit" only flushes stores. A reasonable JVM implementation will flush both fetches and stores upon entry and exit of a monitor block. A variation of this solution uses ThreadLocal storage, which I can't recall at the moment. HTH =3D=3D 3 of 3 =3D=3D Date: Thurs, Dec 16 2004 8:10 am From: "Gerald Thaler" =20 > The main "problem" with DCL is that some JVM implementations are > allowed to assign the value of "instance" before the constructor > has finished. > > That is, the line: > > instance =3D new MySingleton(); > > Creates a new object, assigns the reference for that object > to "instance", then calls the constructor. This makes the > reference visible to other threads before the object is fully > constructed. This behavior is described (vaguely) under > "prescient stores" in the JVM/JLS specs. > However, declaring the field "instance" as a volatile would seem to > prevent that kind of behavior. A volatile field must be fetched/stored > in exactly the same sequence as specified in the original source > code (the compiler is not allowed to perform code movement). The old memory model is broken anyway. By the current memory model (JSR 133= )=20 the volatile establishes a correct happens-before relationship. So DCL work= s=20 as expected. > Another way to avoid the "prescient store" thing is to assign > the reference to a local variable, then enter/exit a synchronized > block after the constructor call, then assign the field. > > public class MySingleton { > > private static volatile MySingleton instance; > > public static MySingleton getInstance() > { > if(instance =3D=3D null) > { > synchronized (MySingleton.class) > { > if(instance =3D=3D null) > { > MySingleton foo; > > foo =3D new MySingleton(); > /* ensure constructor is finished */ > synchronized(foo) > { > instance =3D foo; > } > } > } > } > return instance; > } > } > > The assignment of "foo" can legally occur "early" before > the constructor is called. (Some compilers may place > the constructor in-line immediately after the assignment.) > > However, entering the subsequent monitor block requires that > the constructor is completely finished. Inside the monitor > block it is safe to then assign the "instance" field. This > is also a point of contention among the "experts", because > monitor "entry" only flushes fetches and monitor "exit" only > flushes stores. A reasonable JVM implementation will flush > both fetches and stores upon entry and exit of a monitor > block. No, you're wrong here. Any JVM is legally allowed to move instructions from= =20 outside into a synchronized block, and most will do so. So the local=20 variable and the synchronized(foo) doesn't help at all. The JVM is even=20 allowed to fully optimize the synchronized(foo) away if it can proof that n= o=20 other thread will ever synchronize on foo/instance. For synchronized(foo) t= o=20 enforce memory ordering constraints between two threads in any way, _both_= =20 threads must synchronize on foo. This isn't the case here. But as the instance variable is volatile anyway, theres no problem here. > A variation of this solution uses ThreadLocal storage, which > I can't recall at the moment. Yes. But even this imho cannot be faster than the DCL. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Communication between applets in seperate browswer windows? http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/4095d0c98d1e8cdf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 7 =3D=3D Date: Thurs, Dec 16 2004 6:52 am From: "Richard Smol" =20 Hi there, I have this web-application where is one main applet, that opens several browser windows and then has to be notified whenever something changes in those windows (like, when they close down or reload after submitting a value). Now, I was thinking for using an invisible applets that sends lifetime-changes to the main applet... but very much to my dismay inter-applet communication doesn't work between seperate browser windows.. at least not under Internet Explorer 6. Does anyone have any idea how something like this could be implemented? My personal choice would be to let the applets communicate through sockets on a server, but that solution is not feasible here because of various reasons. Thanks in advance! RS =3D=3D 2 of 7 =3D=3D Date: Thurs, Dec 16 2004 7:03 am From: "Richard Smol" =20 Hi there, I have this web-application where is one main applet, that opens several browser windows and then has to be notified whenever something changes in those windows (like, when they close down or reload after submitting a value). Now, I was thinking for using an invisible applets that sends lifetime-changes to the main applet... but very much to my dismay inter-applet communication doesn't work between seperate browser windows.. at least not under Internet Explorer 6. Does anyone have any idea how something like this could be implemented? My personal choice would be to let the applets communicate through sockets on a server, but that solution is not feasible here because of various reasons. Thanks in advance! RS =3D=3D 3 of 7 =3D=3D Date: Thurs, Dec 16 2004 10:04 am From: "Anton Spaans" =20 "Richard Smol" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there, > > I have this web-application where is one main applet, that opens > several browser windows and then has to be notified whenever something > changes in those windows (like, when they close down or reload after > submitting a value). > > Now, I was thinking for using an invisible applets that sends > lifetime-changes to the main applet... but very much to my dismay > inter-applet communication doesn't work between seperate browser > windows.. at least not under Internet Explorer 6. > > Does anyone have any idea how something like this could be implemented? > My personal choice would be to let the applets communicate through > sockets on a server, but that solution is not feasible here because of > various reasons. > > Thanks in advance! > > RS > I don't know whether this is a java topic, but here it is anyway :) This is what i would try in Javascript - if Java code in applets don't allow you to get the 'Browser'-object (i don't know if it would work, though): Say one applet is in a browser window, that can be referenced in javascript by the variable 'window'. Then, open from this window a second window "var otherWin =3D window.open(...)". Now, through the variables 'window' and 'otherWin' and 'otherWin.opener' (all 'window' objects in javascript), you can reach either applet. Use (event-)listeners, implemented in javascript to communicate from applet to applet. -- Anton. =3D=3D 4 of 7 =3D=3D Date: Thurs, Dec 16 2004 3:09 pm From: Richard Smol =20 Anton Spaans wrote: > "Richard Smol" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >=20 >>Hi there, >> >>I have this web-application where is one main applet, that opens >>several browser windows and then has to be notified whenever something >>changes in those windows (like, when they close down or reload after >>submitting a value). >> >>Now, I was thinking for using an invisible applets that sends >>lifetime-changes to the main applet... but very much to my dismay >>inter-applet communication doesn't work between seperate browser >>windows.. at least not under Internet Explorer 6. >> >>Does anyone have any idea how something like this could be implemented? >>My personal choice would be to let the applets communicate through >>sockets on a server, but that solution is not feasible here because of >>various reasons. >> >>Thanks in advance! >> >>RS >> >=20 >=20 > I don't know whether this is a java topic, but here it is anyway :) >=20 > This is what i would try in Javascript - if Java code in applets don't al= low > you to get the 'Browser'-object (i don't know if it would work, though): >=20 > Say one applet is in a browser window, that can be referenced in javascri= pt > by the variable 'window'. > Then, open from this window a second window "var otherWin =3D > window.open(...)". Now, through the variables 'window' and 'otherWin' and > 'otherWin.opener' (all 'window' objects in javascript), you can reach eit= her > applet. Use (event-)listeners, implemented in javascript to communicate f= rom > applet to applet. Thanks. I have tried this, but it doesn't work since I can't call functions on Java applets from JavaScript in IE. Also, the windows are being opened from inside the Java applet, not through JavaScript. RS =3D=3D 5 of 7 =3D=3D Date: Thurs, Dec 16 2004 3:15 pm From: Andrew Thompson =20 On 16 Dec 2004 06:52:34 -0800, Richard Smol wrote: > I have this web-application .. Does what? > ..where.. Where? URL? >.. is one main applet,=20 Why an applet? Is there something you are doing that cannot=20 be done in HTML? >..that opens several browser windows .. Either reduce your web-app to a single browser window, or triple=20 the budget for maintenance. 'new windows' (aka pop-ups) are hated=20 by users, and going the way of the dinosaurs. BTW - two important questions. Is this a 'business critical' web-app, or merely 'added extras'. Is it to be deployed in a=20 controlled environment such as an intranet, or will it be=20 subjected to the wilds of the internet? >..and then has to be notified whenever something > changes in those windows (like, when they close down or reload after > submitting a value). >=20 > Now, I was thinking for using an invisible applets that sends > lifetime-changes to the main applet... but very much to my dismay > inter-applet communication doesn't work between seperate browser > windows.. at least not under Internet Explorer 6. How are you doing it[1]? What Java version is your IE using[2]? [1] <http://www.physci.org/codes/sscce.jsp> [2] <http://www.physci.org/pc/property.jsp?prop=3Djava.version> > Does anyone have any idea how something like this could be implemented? > My personal choice would be to let the applets communicate through > sockets on a server, but that solution is not feasible here because of > various reasons. =2E.because ..your sockets have holes in the toes? No? Well perhaps you had better fill those details in as well. Sockets would be one good way to allow the applets to communicate, though I suspect you are doing something wrong when you attempt to connect to the other applets. --=20 Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane =3D=3D 6 of 7 =3D=3D Date: Thurs, Dec 16 2004 3:23 pm From: Andrew Thompson =20 On 16 Dec 2004 07:03:19 -0800, Richard Smol wrote: > Hi there, "Ah, McGoogle! You've done it again.." ;-) --=20 Andrew Thompson http://www.PhySci.org/codes/ Web & IT Help http://www.PhySci.org/ Open-source software suite http://www.1point1C.org/ Science & Technology http://www.LensEscapes.com/ Images that escape the mundane =3D=3D 7 of 7 =3D=3D Date: Thurs, Dec 16 2004 3:30 pm From: Richard Smol =20 Andrew Thompson wrote: > On 16 Dec 2004 06:52:34 -0800, Richard Smol wrote: >=20 >=20 >>I have this web-application .. >=20 >=20 > Does what? It contains a chart, which has to be filled in through Cool:Gen generated forms. >>..where.. > =20 > Where? URL? Intranet >>.. is one main applet,=20 > =20 > Why an applet? Is there something you are doing that cannot=20 > be done in HTML? It's a very complicated, highly interactive chart. Besides, the decision to use it has been made long before I entered the scene. >=20 >>..that opens several browser windows .. >=20 > Either reduce your web-app to a single browser window,=20 Not possible, since all forms have been generated by Cool:Gen. That's just how the beastie works. > or triple=20 > the budget for maintenance. 'new windows' (aka pop-ups) are hated=20 > by users, and going the way of the dinosaurs. Well, it mimicks the way the old application works. And again, it's not my decision, bla bla bla :) > BTW - two important questions. Is this a 'business critical' > web-app, or merely 'added extras'. Is it to be deployed in a=20 > controlled environment such as an intranet, or will it be=20 > subjected to the wilds of the internet? It's business critial alright. It will be confined within the bounds of a highly secretive intranet :) >>..and then has to be notified whenever something >>changes in those windows (like, when they close down or reload after >>submitting a value). >> >>Now, I was thinking for using an invisible applets that sends >>lifetime-changes to the main applet... but very much to my dismay >>inter-applet communication doesn't work between seperate browser >>windows.. at least not under Internet Explorer 6. >=20 >=20 > How are you doing it[1]? What Java version is your IE using[2]? > [1] <http://www.physci.org/codes/sscce.jsp> > [2] <http://www.physci.org/pc/property.jsp?prop=3Djava.version> 1.4.2_06 >>Does anyone have any idea how something like this could be implemented? >>My personal choice would be to let the applets communicate through >>sockets on a server, but that solution is not feasible here because of >>various reasons. >=20 >=20 > ..because ..your sockets have holes in the toes? No? > Well perhaps you had better fill those details in as well. *Looks sheepishly* uh... like... tcp/ip sockets? > Sockets would be one good way to allow the applets to communicate, > though I suspect you are doing something wrong when you attempt > to connect to the other applets. Even worse: I did find a way to do it. HAHA! Now I can finally take over the world! Or just get this application started :) Thanks for your input... RS =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Setting Java Virtual Memory http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/991635c2a770e75c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 8:12 am From: Chris Smith =20 <[EMAIL PROTECTED]> wrote: > You are probably instantiating too many objects. Review your code. >=20 > A common cause of this is using the '+=3D' construct to concatenate > strings. Every time this is used, a StringBuffer is instantiated. Nope, the implicit StringBuffer instances used to implement the +=3D=20 operator on Strings will never cause an OutOfMemoryError. A full=20 garbage collection is guaranteed to occur prior to OutOfMemoryError=20 being thrown, so only the memory that's really required will contribute=20 toward this problem. The implicit object from +=3D will be garbage=20 collected before the error is thrown. --=20 www.designacourse.com The Easiest Way To Train Anyone... Anywhere. Chris Smith - Lead Software Developer/Technical Trainer MindIQ Corporation =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Calling Axis WebService out of .net Client http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/eaf2df6380fd7c0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 4:28 pm From: "Christian Wilhelm" =20 Hi! I'm trying to call a Java WebService out of a .net Client. There are two Methods, one Method requires one Parameter of type Parameter, the other Method requires one Parameter of type Parameter[]. I can call the first Method without Problems, the Parameter can be deserialized by the WebService. But if I want to call the second Method and give it an Array of Parameters, then the following exception is thrown by the WebService: javax.xml.rpc.JAXRPCException: org.xml.sax.SAXException: No deserializer defined for array type {http://beans.middleware.cat.company.de}Parameter I have appended the WSDL of the concerning WebService. It is called using rpc-Style, see <soap:binding transport=3D"http://schemas.xmlsoap.org/soap/http" style=3D"rpc" /> Both Methods can be called out of a Java Client. So my assumption is a Problem concerning interoperability between .net and Java. Does anyone have experience with Interoperability between the two Systems? Best Regards, Christian =3D=3D=3D This is the WSDL-File of the Service =3D=3D=3D <?xml version=3D"1.0" encoding=3D"utf-8"?> <wsdl:definitions xmlns:http=3D"http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap=3D"http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s=3D"http://www.w3.org/2001/XMLSchema" xmlns:soapenc=3D"http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns=3D"http://beans.middleware.cat.company.de" xmlns:tm=3D"http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime=3D"http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace=3D"http://beans.middleware.cat.compay.de" xmlns:wsdl=3D"http://schemas.xmlsoap.org/wsdl/"> <wsdl:types> <s:schema xmlns=3D"http://www.w3.org/2001/XMLSchema" targetNamespace=3D"http://beans.middleware.cat.company.de"> <s:import namespace=3D"http://schemas.xmlsoap.org/soap/encoding/" /> <s:complexType name=3D"ArrayOf_xsd_string"> <s:complexContent mixed=3D"false"> <s:restriction base=3D"soapenc:Array"> <s:attribute wsdl:arrayType=3D"s:string[]" ref=3D"soapenc:arrayType" /> </s:restriction> </s:complexContent> </s:complexType> <s:complexType name=3D"CustmapData"> <s:sequence> <s:element name=3D"ID" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"createFrom" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"createStamp" nillable=3D"true" type=3D"s:dateTime" /> <s:element name=3D"primaryKey" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"refId" nillable=3D"true" type=3D"s:string" /> <s:element name=3D"refType" nillable=3D"true" type=3D"s:string" /> <s:element name=3D"sectionId" nillable=3D"true" type=3D"s:int" /> </s:sequence> </s:complexType> <s:complexType name=3D"TicketData"> <s:sequence> <s:element name=3D"ID" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"createAt" nillable=3D"true" type=3D"s:dateTime" /> <s:element name=3D"createFrom" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"custmapId" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"escalationlevel" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"lastaccessAt" nillable=3D"true" type=3D"s:dateTime" /> <s:element name=3D"lastaccessFrom" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"ownernow" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"ownerteam" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"primaryKey" nillable=3D"true" type=3D"s:int" /> <s:element name=3D"remark" nillable=3D"true" type=3D"s:string" /> <s:element name=3D"status" nillable=3D"true" type=3D"s:string" /> </s:sequence> </s:complexType> <s:complexType name=3D"ArrayOfTicketData"> <s:complexContent mixed=3D"false"> <s:restriction base=3D"soapenc:Array"> <s:attribute wsdl:arrayType=3D"tns:TicketData[]" ref=3D"soapenc:arrayType" = /> </s:restriction> </s:complexContent> </s:complexType> <s:complexType name=3D"CustmapTransferObject"> <s:complexContent mixed=3D"false"> <s:extension base=3D"tns:CustmapData"> <s:sequence> <s:element name=3D"tickets" nillable=3D"true" type=3D"tns:ArrayOfTicketData= " /> </s:sequence> </s:extension> </s:complexContent> </s:complexType> <s:complexType name=3D"Parameter"> <s:sequence> <s:element name=3D"name" nillable=3D"true" type=3D"s:string" /> <s:element name=3D"parameterValue" nillable=3D"true" type=3D"s:anyType" /> </s:sequence> </s:complexType> <s:complexType name=3D"ArrayOf_xsd_anyType"> <s:complexContent mixed=3D"false"> <s:restriction base=3D"soapenc:Array"> <s:attribute wsdl:arrayType=3D"s:anyType[]" ref=3D"soapenc:arrayType" /> </s:restriction> </s:complexContent> </s:complexType> <s:complexType name=3D"ArrayOfParameter"> <s:complexContent mixed=3D"false"> <s:restriction base=3D"soapenc:Array"> <s:attribute wsdl:arrayType=3D"tns:Parameter[]" ref=3D"soapenc:arrayType" /> </s:restriction> </s:complexContent> </s:complexType> <s:complexType name=3D"ParameterArray"> <s:sequence> <s:element name=3D"parameterArray" nillable=3D"true" type=3D"tns:ArrayOfPar= ameter" /> </s:sequence> </s:complexType> </s:schema> </wsdl:types> <wsdl:message name=3D"getExampleHashResponse"> <wsdl:part name=3D"getExampleHashReturn" type=3D"tns:Parameter" /> </wsdl:message> <wsdl:message name=3D"ainvokeThirdPartyRequest"> <wsdl:part name=3D"targetUrl" type=3D"s:string" /> <wsdl:part name=3D"functionName" type=3D"s:string" /> <wsdl:part name=3D"parameter" type=3D"s:anyType" /> </wsdl:message> <wsdl:message name=3D"testSoapClientRequest" /> <wsdl:message name=3D"getExampleArrayRequest" /> <wsdl:message name=3D"getCustmapByIdResponse"> <wsdl:part name=3D"getCustmapByIdReturn" type=3D"tns:CustmapTransferObject"= /> </wsdl:message> <wsdl:message name=3D"getExampleHashRequest" /> <wsdl:message name=3D"getCustmapByIdRequest"> <wsdl:part name=3D"custmapID" type=3D"s:int" /> </wsdl:message> <wsdl:message name=3D"getTicketsForCustmapRequest"> <wsdl:part name=3D"custmapID" type=3D"s:int" /> </wsdl:message> <wsdl:message name=3D"testSoapClientResponse"> <wsdl:part name=3D"testSoapClientReturn" type=3D"s:anyType" /> </wsdl:message> <wsdl:message name=3D"testStringArrayRequest"> <wsdl:part name=3D"strArray" type=3D"tns:ArrayOf_xsd_string" /> </wsdl:message> <wsdl:message name=3D"testStringArrayResponse"> <wsdl:part name=3D"testStringArrayReturn" type=3D"s:string" /> </wsdl:message> <wsdl:message name=3D"getExampleArrayResponse"> <wsdl:part name=3D"getExampleArrayReturn" type=3D"tns:ArrayOf_xsd_anyType" = /> </wsdl:message> <wsdl:message name=3D"invokeThirdPartyRequest"> <wsdl:part name=3D"targetUrl" type=3D"s:string" /> <wsdl:part name=3D"functionName" type=3D"s:string" /> <wsdl:part name=3D"systemName" type=3D"s:string" /> <wsdl:part name=3D"parameter" type=3D"s:anyType" /> </wsdl:message> <wsdl:message name=3D"ainvokeThirdPartyResponse"> <wsdl:part name=3D"ainvokeThirdPartyReturn" type=3D"s:anyType" /> </wsdl:message> <wsdl:message name=3D"invokeThirdPartyResponse"> <wsdl:part name=3D"invokeThirdPartyReturn" type=3D"s:anyType" /> </wsdl:message> <wsdl:message name=3D"getTicketsForCustmapResponse"> <wsdl:part name=3D"getTicketsForCustmapReturn" type=3D"tns:ArrayOfTicketDat= a" /> </wsdl:message> <wsdl:portType name=3D"RemoteService"> <wsdl:operation name=3D"testSoapClient"> <wsdl:input name=3D"testSoapClientRequest" message=3D"tns:testSoapClientReq= uest" /> <wsdl:output name=3D"testSoapClientResponse" message=3D"tns:testSoapClientResponse" /> </wsdl:operation> <wsdl:operation name=3D"testStringArray" parameterOrder=3D"strArray"> <wsdl:input name=3D"testStringArrayRequest" message=3D"tns:testStringArrayRequest" /> <wsdl:output name=3D"testStringArrayResponse" message=3D"tns:testStringArrayResponse" /> </wsdl:operation> <wsdl:operation name=3D"ainvokeThirdParty" parameterOrder=3D"targetUrl functionName parameter"> <wsdl:input name=3D"ainvokeThirdPartyRequest" message=3D"tns:ainvokeThirdPartyRequest" /> <wsdl:output name=3D"ainvokeThirdPartyResponse" message=3D"tns:ainvokeThirdPartyResponse" /> </wsdl:operation> <wsdl:operation name=3D"invokeThirdParty" parameterOrder=3D"targetUrl functionName systemName parameter"> <wsdl:input name=3D"invokeThirdPartyRequest" message=3D"tns:invokeThirdPartyRequest" /> <wsdl:output name=3D"invokeThirdPartyResponse" message=3D"tns:invokeThirdPartyResponse" /> </wsdl:operation> <wsdl:operation name=3D"getCustmapById" parameterOrder=3D"custmapID"> <wsdl:input name=3D"getCustmapByIdRequest" message=3D"tns:getCustmapByIdReq= uest" /> <wsdl:output name=3D"getCustmapByIdResponse" message=3D"tns:getCustmapByIdResponse" /> </wsdl:operation> <wsdl:operation name=3D"getTicketsForCustmap" parameterOrder=3D"custmapID"> <wsdl:input name=3D"getTicketsForCustmapRequest" message=3D"tns:getTicketsForCustmapRequest" /> <wsdl:output name=3D"getTicketsForCustmapResponse" message=3D"tns:getTicketsForCustmapResponse" /> </wsdl:operation> <wsdl:operation name=3D"getExampleHash"> <wsdl:input name=3D"getExampleHashRequest" message=3D"tns:getExampleHashReq= uest" /> <wsdl:output name=3D"getExampleHashResponse" message=3D"tns:getExampleHashResponse" /> </wsdl:operation> <wsdl:operation name=3D"getExampleArray"> <wsdl:input name=3D"getExampleArrayRequest" message=3D"tns:getExampleArrayRequest" /> <wsdl:output name=3D"getExampleArrayResponse" message=3D"tns:getExampleArrayResponse" /> </wsdl:operation> </wsdl:portType> <wsdl:binding name=3D"RemoteServicePortSoapBinding" type=3D"tns:RemoteServi= ce"> <soap:binding transport=3D"http://schemas.xmlsoap.org/soap/http" style=3D"r= pc" /> <wsdl:operation name=3D"testSoapClient"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"testSoapClientRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"testSoapClientResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"testStringArray"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"testStringArrayRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"testStringArrayResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"ainvokeThirdParty"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"ainvokeThirdPartyRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"ainvokeThirdPartyResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"invokeThirdParty"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"invokeThirdPartyRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"invokeThirdPartyResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"getCustmapById"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"getCustmapByIdRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"getCustmapByIdResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"getTicketsForCustmap"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"getTicketsForCustmapRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"getTicketsForCustmapResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"getExampleHash"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"getExampleHashRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"getExampleHashResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> <wsdl:operation name=3D"getExampleArray"> <soap:operation soapAction=3D"" /> <wsdl:input name=3D"getExampleArrayRequest"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:input> <wsdl:output name=3D"getExampleArrayResponse"> <soap:body use=3D"encoded" namespace=3D"http://beans.middleware.cat.company= .de" encodingStyle=3D"http://schemas.xmlsoap.org/soap/encoding/" /> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name=3D"RemoteService"> <wsdl:port name=3D"RemoteServicePort" binding=3D"tns:RemoteServicePortSoapBinding"> <soap:address location=3D"http://xx-xx-xxx:8080//services/RemoteService" /> </wsdl:port> </wsdl:service> </wsdl:definitions> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Threadsafe Timers? http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/84b90615248a59bc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 2 =3D=3D Date: Thurs, Dec 16 2004 7:38 am From: [EMAIL PROTECTED] I have recently begun the joys of ensuring that all of my GUI/Swing code is thread safe by adding invokeLater() and invokeAndWait() methods everywhere. As far as I can tell, all Swing classes are assumed to NOT be thread safe. Does this include javax.swing.Timer? Specifically, I use Timers all over the place for regularly scheduled tasks and when I turn them on or off, or restart() them, do these also need to be enclosed in invokeLater() and invokeAndWait() methods? Is it safe to assume that the event handlers for Timers execute on the event dispatching thread so that anything within these tasks is safe without the extra protection? In case it matters my target JVM is the 1.3.1_07 JRE from Sun. Thanks for any help! -Will =3D=3D 2 of 2 =3D=3D Date: Thurs, Dec 16 2004 4:57 pm From: Thomas Weidenfeller =20 [EMAIL PROTECTED] wrote: > Is it safe to > assume that the event handlers for Timers execute on the event > dispatching thread so that anything within these tasks is safe without > the extra protection?=20 Well, tell me, what is your interpretation of the following quote from=20 the Timer API documentation? Although all Timers perform their waiting using a single, shared thread (created by the first Timer object that executes), the action event handlers for Timers execute on another thread -- the event-dispatching thread. This means that the action handlers for Timers can safely perform operations on Swing components. However, it also means that the handlers must execute quickly to keep the GUI responsive. /Thomas --=20 ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/computer-lang/java/gui/faq =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: SCJP 5.0 Beta http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/ccda6850cafec98b =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 1 =3D=3D Date: Thurs, Dec 16 2004 7:52 am From: [EMAIL PROTECTED] (Darren)=20 I received a notification this morning regarding the Beta for this exam, which will be available from January 13 through to February 13, 2005. Here are some notes: 1. Beta Cost: $49 US 2. Exam Number: 311-055 3. Passing the exam provides you with full Sun certification status, and you will receive a "certification kit". 4. Candidates will have four (4) hours to complete 138 questions. The time allotted should give you time to respond to all questions and provide your valuable comments while taking the exam. 5. Unlike other SUN Microsystems certification exams, this exam does NOT require a voucher. To register for the SUN Microsystems "Sun Certified Programmer for the Java 2 Platform, Standard Edition 5.0" Beta exam, you may register online at www.2test.com <http://www.2test.com/> , and follow the prompts. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D TOPIC: Connection Pooling - c3p0 - Tomcat. http://groups-beta.google.com/group/comp.lang.java.programmer/browse_thread= /thread/8bdefe9f4a95f2fb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D =3D=3D 1 of 2 =3D=3D Date: Fri, Dec 17 2004 12:09 am From: Rico =20 As the docs say, c3p0 was designed to be very simple to use, and it is. =46romwhat I understand, just a matter of having the c3p0.jar in the effective classpath; adding the following code and getting connections from the DataSource: import com.mchange.v2.c3p0.*;=20 =2E.. ComboPooledDataSource cpds =3D new ComboPooledDataSource(); cpds.setDriverClass( "org.postgresql.Driver" ); //loads the jdbc driver cpds.setJdbcUrl( "jdbc:postgresql://localhost/testdb" ); cpds.setUser("dbuser"); cpds.setPassword("dbpassword"); So I'm thinking for our web-application I can just add the above code to my classes in WEB-INF/classes. Is that enough? Coz there's this part: "You can easily configure Apache's Tomcat web application server to use c3p0 pooled DataSources. Below is a sample config to get you started. It's a fragment of Tomcat's conf/server.xml file, which should be modified to suit and placed inside a <Context> element." Do I need to do this? What would it gain us? Thanks. Rico. =3D=3D 2 of 2 =3D=3D Date: Thurs, Dec 16 2004 9:07 am From: Chris Smith =20 Rico <[EMAIL PROTECTED]> wrote: > From what I understand, just a matter of having the c3p0.jar in the > effective classpath; adding the following code and getting connections > from the DataSource: >=20 > import com.mchange.v2.c3p0.*;=20 > ... > ComboPooledDataSource cpds =3D new ComboPooledDataSource(); > cpds.setDriverClass( "org.postgresql.Driver" ); //loads the jdbc driver > cpds.setJdbcUrl( "jdbc:postgresql://localhost/testdb" ); > cpds.setUser("dbuser"); > cpds.setPassword("dbpassword"); That would work, but it's not ideal. > Coz there's this part: > "You can easily configure Apache's Tomcat web application server to use > c3p0 pooled DataSources. Below is a sample config to get you started. > It's a fragment of Tomcat's conf/server.xml file, which should be > modified to suit and placed inside a <Context> element." That is ideal. The idea behind a data source is that your code doesn't=20 care where the connections are coming from. If you add the above code=20 to your project, then you have to recompile your code to connect a=20 database other than PostgreSQL on localhost; not the best idea in the=20 world. By placing the configuration in server.xml, you can change the=20 database configuration by editing a config file. You'll still aquire=20 the data source by the same JNDI name, and your code will be identical=20 when you connect to a database somewhere else. --=20 www.designacourse.com The Easiest Way To Train Anyone... Anywhere. Chris Smith - Lead Software Developer/Technical Trainer MindIQ Corporation =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D You received this message because you are subscribed to the Google Groups "comp.lang.java.programmer" group. To post to this group, send email to [EMAIL PROTECTED] .com or visit http://groups-beta.google.com/group/comp.lang.java.programmer To unsubscribe from this group, send email to [EMAIL PROTECTED] To change the way you get mail from this group, visit: http://groups-beta.google.com/group/comp.lang.java.programmer/subscribe To report abuse, send email explaining the problem to [EMAIL PROTECTED] =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D Google Groups: http://groups-beta.google.com=20 From jeff Thu Dec 16 16:15:13 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:13 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:13 -0800 Received: from exprod5mx126.postini.com ([64.18.0.40] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHY-0000he-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:12 -0800 Received: from source ([64.125.133.206]) by exprod5mx126.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:17:56 PST Received: (qmail 25798 invoked by uid 5302); 16 Dec 2004 16:17:43 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk X-No-Archive: yes list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 25701 invoked from network); 16 Dec 2004 16:17:43 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=dh45wBN5hogpYYGHJWePU18x5g/eawBUssAmYT/qUBs1cJ+iE6AziN3gm0rxMSS0Ec9BQGQRDoSk3qGUjO1zrENpzDbKNOQEmfX2W2CUP/duqWpfRYNgJT59fIFb2Nr7e1BBmTzJV++rtbQB348nNf6m8zw40lvCr9BfW/uXDvs= Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 08:17:27 -0800 From: Patrick Lightbody <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] In-Reply-To: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <[EMAIL PROTECTED]> Subject: Re: [OS-webwork] Select Tag with EnumeratedType and Velocity X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,HTML_MESSAGE autolearn=ham version=2.64 Eric, What do you get when you print out $types? On Thu, 16 Dec 2004 11:11:08 -0500, Eric McKenna <[EMAIL PROTECTED]> wrote: > Hello All, > Trying to use the Select tag in Velocity with an Enumerated type. > Done easy enough in JSP's but can't find the right mix in a template. > > See any problems with what's below? > > #set($types = $stack.findValue("@[EMAIL PROTECTED]()")) > #tag(Select "label='myLabel" > "name='model.myType" > "value='$!model.myLabel'" > "list={$types}" > "listKey='id'" > "listValue='name'" > ) > > YesNoType is a simple EnumeratedType with 0 mapped to YesNoType.NO and > 1 to YES, with names 'No' and 'Yes' > > So, I'm trying to get > <option value=0>No</option> > <option value=1>Yes</option> > > but i get this instead. And 'id' and 'name' are litterly printed, > they are not just place holders for numerical values. > <TD vAlign=top align=right><SPAN class=label>myLabel: </SPAN></TD> > <TD> > <SELECT name=model.myType> > <OPTION value=id selected>name</OPTION> > </SELECT> > </TD> > > Thoughts? > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] From jeff Thu Dec 16 16:15:13 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:13 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:13 -0800 Received: from exprod5mx121.postini.com ([64.18.0.35] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHZ-0000hT-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:13 -0800 Received: from source ([194.12.255.250]) by exprod5mx121.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:42 EST Received: from linux-bulgaria.org (linux-bulgaria.org [212.5.145.46]) by marla.ludost.net (Postfix) with ESMTP id 2B6E9D07F; Thu, 16 Dec 2004 18:17:35 +0200 (EET) Received: (from [EMAIL PROTECTED]) by linux-bulgaria.org (8.11.6/8.11.6) id iBGGDgb06959 for lug-bg-list; Thu, 16 Dec 2004 18:13:42 +0200 Received: from straylight.ringlet.net ([213.16.36.84]) by linux-bulgaria.org (8.11.6/8.11.6) with SMTP id iBGGDer06956 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 18:13:40 +0200 Received: (qmail 14690 invoked by uid 1000); 16 Dec 2004 16:13:39 -0000 Date: Thu, 16 Dec 2004 18:13:39 +0200 From: Peter Pentchev <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: lug-bg: =?windows-1251?B?xPDg6eL68Ogg?= =?windows-1251?B?5+Ag7PDl5u7i6CDv6+Dy6ugg8SDv7uTk8Prm6uAg7eA=?= MTU>1500 Message-ID: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C1iGAkRnbeBonpVg" Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> User-Agent: Mutt/1.5.6i Sender: [EMAIL PROTECTED] Precedence: bulk Reply-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 --C1iGAkRnbeBonpVg Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 16, 2004 at 05:25:52PM +0200, Doncho N. Gunchev wrote: > On 2004 12 15 (Wednesday) 16:27, Vesselin Kolev wrote: > > diablodh wrote: > ... > >=20 > > =D2=EE=E2=E0 =E5 =EE=F0=E8=E3=E8=ED=E0=EB=ED=E8=FF =E4=F0=E0=E9=E2=FA= =F0 =ED=E0 Intel. =D0=E0=E1=EE=F2=E8 =E1=E5=E7=EF=F0=EE=E1=EB=E5=EC=ED=EE. = =CC=E0=EB=EA=E0=20 > > =E4=E5=EC=EE=ED=F1=F2=F0=E0=F6=E8=FF: > >=20 > > [EMAIL PROTECTED] root]# ip link set eth0 mtu 1504 > > [EMAIL PROTECTED] root]# ip link show eth0 > > 3: eth0: <BROADCAST,MULTICAST,UP> mtu 1504 qdisc pfifo_fast qlen 1000 > > link/ether 00:0c:6e:b9:4c:05 brd ff:ff:ff:ff:ff:ff > >=20 > > =C8 =E2=F1=E5 =EF=E0=EA =E5 =E4=EE=E1=F0=E5 =E4=E0 =EC=EE=E6=E5 =F2=EE= =E2=E0 =ED=E5=F9=EE =E4=E0 =F1=E5 =EF=F0=E0=E2=E8 =ED=E0 =EA=E0=F0=F2=E8 = =E7=E0 100 Mbps=20 > > =E5=F2=E5=F0=ED=E5=F2. > >=20 >=20 > =C2=F1=E8=F7=EA=E8=F2=E5 =EA=E0=F0=F2=E8 =EA=EE=E8=F2=EE =E8=EC=E0=EC= =E4=EE=F1=F2=FA=EF =ED=E5 =EC=EE=E3=E0=F2 - RTL-8139, > intel Ethernet Pro 100, Compaq Netelligent 10/100... :( >=20 > [EMAIL PROTECTED] root]# ip link set eth0 mtu 1504 > SIOCSIFMTU: Invalid argument >=20 > > =C8 =E2=F1=E5 =EF=E0=EA =E5 =E4=EE=E1=F0=E5 =E4=E0 =EC=EE=E6=E5 =F2=EE= =E2=E0 =ED=E5=F9=EE =E4=E0 =F1=E5 =EF=F0=E0=E2=E8 =ED=E0 =EA=E0=F0=F2=E8 = =E7=E0 100 Mbps=20 > > =E5=F2=E5=F0=ED=E5=F2. >=20 > =D1=EF=EE=F0=E5=E4 =F2=EE=E2=E0 =EA=EE=E5=F2=EE =F7=E5=F2=E0 =E7=E0 v= lan =EF=EE=E4=E4=F0=FA=E6=EA=E0=F2=E0, =F1=EB=E5=E4 =EA=E0=F2=EE > _=EC=EE=E3=E0_ =ED=E0 e100 =E4=E0 =EF=EE=E4=EA=E0=F0=E0=EC vlan =EC=E5=E6= =E4=F3 2 =EC=E0=F8=E8=ED=E8 MTU > 1500 > =F2=F0=FF=E1=E2=E0 =E4=E0 =F0=E0=E1=EE=F2=E8, =EF=EE=ED=E5=E6=E5 =F1=E5 = =EF=EE=EB=E7=E2=E0. =CE=F2 =E4=F0=F3=E3=E0 =F1=F2=F0=E0=ED=E0 =E8=EC=E0=F8= =E5 > =ED=FF=EA=E0=EA=E2=E8 =EA=EE=EC=E5=ED=F2=E0=F0=E8 =E7=E0 =F1=EA=F0=E8=F2= =EE =EF=EE=EB=E7=E2=E0=ED=E5 =ED=E0 mtu > 1500 _=F1=E0=EC=EE_ > =EF=EE =F2=EE=E7=E8 =EF=EE=E2=EE=E4 =E8 =F2=E2=FA=F0=E4 =EB=E8=EC=E8=F2 1= 500 =E7=E0 =E2=F1=E8=F7=EA=EE =EE=F1=F2=E0=ED=E0=EB=EE... =CD=E0 =EC=E5=ED =EC=E8 =F1=E5 =F1=F2=F0=F3=E2=E0, =F7=E5 =EF=EE =EF=F0=E8= =ED=F6=E8=EF =F2=E0=EA=E0=E2=E0 =E5 =E8=E4=E5=FF=F2=E0... =C2 =F1=EC=E8=F1= =FA=EB: 1. =D1=EF=EE=F0=E5=E4 =EF=FA=F0=E2=EE=ED=E0=F7=E0=EB=ED=E8=F2=E5 =F1=F2=E0= =ED=E4=E0=F0=F2=E8=F2=E5 =E7=E0 Ethernet, MTU =ED=E0 Ethernet iface =E5 1500, =F2=EE=F7=EA=E0. 2. =D1 =E2=FA=E2=E5=E6=E4=E0=ED=E5=F2=EE =ED=E0 VLAN's =F1=E5 =EF=EE=FF=E2= =FF=E2=E0 =E5=E4=ED=EE =E8=EC=E5=ED=ED=EE "=F1=EA=F0=E8=F2=EE" MTO =EE=F2 1= 504, =EA=EE=E5=F2=EE =E2=E0=E6=E8 *=F1=E0=EC=EE* =E7=E0 =EF=E0=EA=E5=F2=E8 = =F1 VLAN header. =C2=F1=E5 =EF=E0=EA =CD=C5 =CC=CE=C6=C5=D8 =E4=E0 =E8=E7=EF=F0=E0=F2=E8=F8 =ED=EE=F0=EC=E0=EB=E5=ED Ethernet =EF=E0=EA=E5= =F2 =E1=E5=E7 VLAN header, =EA=EE=E9=F2=EE =EF=E0=EA=E5=F2 =E4=E0 =E5 =EF=EE-=E3=EE=EB=FF=EC =EE=F2 1500 =E1=E0=E9=F2=E0, =E7=E0=F9=EE=F2=EE = =E2=E8=E6 =F2=EE=F7=EA=E0 1. 3. =D1 =E2=FA=E2=E5=E6=E4=E0=ED=E5=F2=EE =ED=E0 GigE =F1=E5 =EF=EE=FF=E2=FF= =E2=E0=F2 jumbo frames, =EA=EE=E8=F2=EE =EC=EE=E3=E0=F2 =E4=E0 =E1=FA=E4=E0= =F2 > 1500, =ED=EE *=F1=E0=EC=EE* =E2=FA=F0=F5=F3 GigE =E8=ED=F2=E5=F0=F4=E5= =E9=F1=E8 =E8 =EC=E0=E9 =F1=E0=EC=EE =EA=EE=E3=E0=F2=EE =EA=E0=F0=F2=E8=F2= =E5 =F1=E0 =F1=E5 =E4=EE=E3=EE=E2=EE=F0=E8=EB=E8 =E7=E0 =F2=EE=E2=E0. =CD=E5 =F1= =FA=EC =F1=E8=E3=F3=F0=E5=ED =E4=E0=EB=E8 =E8=E7=EE=E1=F9=EE =E8=EC=E0 GigE= =EA=E0=F0=F2=E8, =EA=EE=E8=F2=EE =E4=E0 =F1=E0 =F1=FA=E3=EB=E0=F1=ED=E8 =E4=E0 =EF=F3=F1= =EA=E0=F2 jumbo frames =E2=FA=F0=F5=F3 100Mbit =E8=ED=F2=E5=F0=F4=E5=E9=F1= =E8. =CF=F0=E8=F7=E8=ED=E0=F2=E0 =E5 =E5=EB=E5=EC=E5=ED=F2=E0=F0=ED=E0: =EC= =EE=E6=E5 =ED=E0 =F2=EE=E7=E8 =E8=ED=F2=E5=F0=F4=E5=E9=F1 =E4=E0 =E8=EC=E0 = "=ED=EE=F0=EC=E0=EB=ED=E0" Ethernet =EA=E0=F0=F2=E0, =EA=EE=FF=F2=EE =F1=E8 =E7=ED=E0=E5 =F1=F2=E0= =ED=E4=E0=F0=F2=E0 =E8 =EF=F0=EE=F1=F2=EE =ED=E5 =EC=EE=E6=E5 =E4=E0 =EF=F0= =E5=E3=EB=FA=F2=ED=E5 =F4=F0=E5=E9=EC, =EF=EE-=E3=EE=EB=FF=EC =EE=F2 1500 =E1=E0=E9=F2=E0. =D0=E0=E7=E1=E8=F0=E0 =F1=E5, =F2=EE=E2=E0 =F1=E0 =F1=E0=EC=EE =ED=FF=EA=E0= =EA=E2=E8 =E1=E5=E3=EB=E8 =E2=EF=E5=F7=E0=F2=EB=E5=ED=E8=FF - =E0=EA=EE =ED= =FF=EA=EE=E9 =E7=ED=E0=E5, =F7=E5 =ED=E5 =F1=FA=EC =EF=F0=E0=E2, =E4=E0 =EA=E0=E6=E5 :) =CF=EE=E7=E4=F0=E0=E2=E8, =CF=E5=F2=FA=F0 --=20 Peter Pentchev [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am the thought you are now thinking. --C1iGAkRnbeBonpVg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFBwbQy7Ri2jRYZRVMRAhX8AJ9Pq785DVwF6GKgqQv637oyYyu+bgCghLAr jqG6dahiTsdrd10QgWH+vL8= =fA+W -----END PGP SIGNATURE----- --C1iGAkRnbeBonpVg-- ============================================================================ A mail-list of Linux Users Group - Bulgaria (bulgarian linuxers). http://www.linux-bulgaria.org - Hosted by Internet Group Ltd. - Stara Zagora To unsubscribe: http://www.linux-bulgaria.org/public/mail_list.html ============================================================================ From jeff Thu Dec 16 16:15:08 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:08 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:08 -0800 Received: from exprod5mx118.postini.com ([64.18.0.32] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHU-0000hI-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:08 -0800 Received: from source ([69.16.138.164]) by exprod5mx118.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:17:52 EST Received: from [69.16.138.164] (localhost [127.0.0.1]) by lists.digium.com (Postfix) with ESMTP id 026123C362; Thu, 16 Dec 2004 06:26:33 -0600 (CST) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from psmtp.com (exprod5mx121.postini.com [64.18.0.35]) by lists.digium.com (Postfix) with SMTP id E74CD2FD378 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 06:26:14 -0600 (CST) Received: from source ([165.154.13.38]) (using TLSv1) by exprod5mx121.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 04:26:22 PST Received: (qmail 29691 invoked by alias); 16 Dec 2004 12:26:21 -0000 Received: from brotherk-fw.mixdown.ca (HELO ?192.168.1.104?) (165.154.13.34) by 0 with RC4-MD5 encrypted SMTP; 16 Dec 2004 12:26:21 -0000 From: Andrew Kohlsmith <[EMAIL PROTECTED]> Organization: Benshaw Canada To: [EMAIL PROTECTED] Subject: Re: [Asterisk-Users] wcfxs causing constant CPU spikes Date: Thu, 16 Dec 2004 07:25:12 -0500 User-Agent: KMail/1.7.1 References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <[EMAIL PROTECTED]> X-pstn-levels: (S:99.90000/99.90000 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 X-pstn-addresses: from <[EMAIL PROTECTED]> [65/3] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Asterisk Users Mailing List - Non-Commercial Discussion <[EMAIL PROTECTED]> List-Id: Asterisk Users Mailing List - Non-Commercial Discussion <asterisk-users.lists.digium.com> List-Unsubscribe: <http://lists.digium.com/mailman/listinfo/asterisk-users>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.digium.com/pipermail/asterisk-users> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://lists.digium.com/mailman/listinfo/asterisk-users>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 On December 15, 2004 10:50 pm, Eric Bishop wrote: > This is not fantastic tech support from Digium! You need to remember that mantis is "run" by a lot more people than Digium employs. The bug marshalls were likely just holding to the credo that the bug tracker is for *asterisk* and not the hardware, which Digium is to support. -A. _______________________________________________ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users From jeff Thu Dec 16 16:15:21 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:21 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:21 -0800 Received: from exprod5mx32.postini.com ([64.18.0.187] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHh-0000iL-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:21 -0800 Received: from source ([130.57.169.17]) (using TLSv1) by exprod5mx32.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:04 EST Received: from headcheese.ximian.com (localhost [127.0.0.1]) by lists.ximian.com (Postfix) with ESMTP id 106A6124289; Thu, 16 Dec 2004 11:18:03 -0500 (EST) Received: by lists.ximian.com (Postfix, from userid 38) id 908F412425D; Thu, 16 Dec 2004 11:17:29 -0500 (EST) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.197]) by lists.ximian.com (Postfix) with ESMTP id D21CC12425D for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 11:17:23 -0500 (EST) Received: by rproxy.gmail.com with SMTP id b11so1290825rne for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 08:17:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=ir7JFU6W5EmB4XK8XEcCNh0rSE+9SD3C3nn6Dt3ZpUvchk21sO00q9rgJdO/JE38fKSMUHj1SqtzwzZzsG0w45dLtsXTuV9HwO1hh5GOyaHBepNCYdlwzu6mYMGD8w81znRzmakIHIZHBH5hXUPlfiw4NPARoqiI+Jc0jNyOhT0= Received: by 10.38.207.1 with SMTP id e1mr1474934rng; Thu, 16 Dec 2004 08:17:22 -0800 (PST) Received: by 10.38.102.76 with HTTP; Thu, 16 Dec 2004 08:17:22 -0800 (PST) Message-ID: <[EMAIL PROTECTED]> From: Tristan Van Berkom <[EMAIL PROTECTED]> Reply-To: Tristan Van Berkom <[EMAIL PROTECTED]> To: Glade Devel <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [Glade-devel] Glade-3 team meeting Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: <mailto:[EMAIL PROTECTED]> List-Post: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://lists.ximian.com/mailman/listinfo/glade-devel>, <mailto:[EMAIL PROTECTED]> List-Id: Discussions about the development of Glade <glade-devel.lists.ximian.com> List-Unsubscribe: <http://lists.ximian.com/mailman/listinfo/glade-devel>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.ximian.com/archives/public/glade-devel/> Date: Thu, 16 Dec 2004 11:17:22 -0500 X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Good morning ! We'll be holding an irc team meeting on Monday December 20th at 18:00 UTC at irc.gnome.org in channel #glade3 . The somewhat lax agenda will be: - Clarifications of long term project objectives - Assessment of features/bugs that are blocking a glade3 release (I'll try my best to bring a list for starters) - Exploration of the possibility of a test phase release. - Whatever topics of interest that people bring to the table ;-) Everyone is welcome to attend, especially people who wish to play a role in the glade-3 cause ofcourse. Note that channel #glade3 has been our "hangout" for a few months now, if you have any glade3 related questions etc. just come and drop in ;-) Cheers, -Tristan _______________________________________________ Glade-devel maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/glade-devel From jeff Thu Dec 16 16:15:19 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:19 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:19 -0800 Received: from exprod5mx126.postini.com ([64.18.0.40] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHf-0000i3-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:19 -0800 Received: from source ([209.17.183.249]) by exprod5mx126.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:02 EST Received: from listserv.activestate.com (localhost.localdomain [127.0.0.1]) by listserv.activestate.com (8.12.10/8.12.10) with ESMTP id iBGGG0cQ026929; Thu, 16 Dec 2004 08:16:02 -0800 (envelope-from [EMAIL PROTECTED]) Received: from smtp7.ActiveState.com (percolator.ActiveState.com [192.168.2.13]) by listserv.activestate.com (8.12.10/8.12.10) with ESMTP id iBGGF6bE026498 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 08:15:06 -0800 (envelope-from [EMAIL PROTECTED]) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by smtp7.ActiveState.com (8.12.10/8.12.10) with ESMTP id iBGGF3HF046508 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 08:15:04 -0800 (PST) (envelope-from [EMAIL PROTECTED]) Received: from [192.168.0.2] (really [67.20.95.49]) by mta11.adelphia.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with ESMTP id <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 11:15:00 -0500 Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 08:14:58 -0800 From: "$Bill Luebkert" <[EMAIL PROTECTED]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20040910 X-Accept-Language: en, en-ca, en-au, en-gb, en-us, fr, de, es MIME-Version: 1.0 To: "Lasher, Brian" <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-PMX-Version: 4.7.0.111621, Antispam-Engine: 2.0.2.0, Antispam-Data: 2004.12.15.45 Cc: [EMAIL PROTECTED] Subject: Re: black box X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.4 Precedence: list List-Id: Discussions relating to ActivePerl on Win32 platforms <perl-win32-users.listserv.ActiveState.com> List-Unsubscribe: <http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://ASPN.ActiveState.com/ASPN/Mail/Browse/Threaded/perl-win32-users> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Lasher, Brian wrote: > Thanks for all the help. Wasn't aware that the shebang made no > difference in windoze. As for file associations, seems like we've got > file extension namespace pollution. ".wpl" on my pc is associated with > windoze media player. Set it up gor ".plw". Note that Perl still uses the switches on the shebang line after the path. -- ,-/- __ _ _ $Bill Luebkert Mailto:[EMAIL PROTECTED] (_/ / ) // // DBE Collectibles Mailto:[EMAIL PROTECTED] / ) /--< o // // Castle of Medieval Myth & Magic http://www.todbe.com/ -/-' /___/_<_</_</_ http://dbecoll.tripod.com/ (My Perl/Lakers stuff) _______________________________________________ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs From jeff Thu Dec 16 16:15:20 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:20 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:20 -0800 Received: from exprod5mx53.postini.com ([64.18.0.232] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHg-0000i5-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:20 -0800 Received: from source ([216.118.117.77]) by exprod5mx53.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:18:03 PST Received: from hex.databits.net (localhost.databits.net [127.0.0.1]) by hex.databits.net (Postfix) with ESMTP id B34CF57B12; Thu, 16 Dec 2004 10:18:02 -0600 (CST) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by hex.databits.net (Postfix) with ESMTP id 376C457ACB for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:17:52 -0600 (CST) Received: from [12.74.144.58] (58.st.louis-111-113rs.mo.dial-access.att.net[12.74.144.58]) by worldnet.att.net (mtiwmhc11) with SMTP id <2004121616174711100ik79qe>; Thu, 16 Dec 2004 16:17:48 +0000 Received: from 127.0.0.1 (AVG SMTP 7.0.296 [265.5.4]); Thu, 16 Dec 2004 10:17:21 -0600 Message-ID: <[EMAIL PROTECTED]> From: "Anthony Lordi" <[EMAIL PROTECTED]> To: "Central West End Linux Users Group" <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Subject: Re: [cwe-lug] CWE-LUG meeting this Sunday Date: Wed, 15 Dec 2004 13:57:48 -0600 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; format=flowed; charset=iso-8859-1; reply-type=response X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Central West End Linux Users Group <[EMAIL PROTECTED]> List-Id: Central West End Linux Users Group <cwe-lug.lists.firepipe.net> List-Unsubscribe: <http://lists.firepipe.net/listinfo/cwe-lug>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.firepipe.net/pipermail/cwe-lug> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://lists.firepipe.net/listinfo/cwe-lug>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.2 required=4.0 tests=BAYES_00,DATE_IN_PAST_12_24 autolearn=no version=2.64 Robert. Just gave a Linux presentation to a Windows group in hopes of getting older users to try Linux. I learned that most were afraid of jeopardizing their windows computer and some had another computer to try Linux. I again paraded Knoppix and Open CD and passed out remaining copies. Learned that group wanted an actual demonstration of an install on a hard drive, and I agreed to present one. Got the volunteer of a laptop to try it. I am to pick up the laptop this weekend and know little about it. My laptop has had Libranet 1.7 and Xandros 2.0 with code weavers now installed, (both with some install problems with the display) for answering questions. I want to use the borrowed laptop to install a free(floss) with hopefully the 2.6 kernel and Firefox browser. Was thinking FC3. What do you think of a trial run Sunday to see if there is a problem with the test laptop. And if not, reinstall for demonstration at the Windows group meeting. Anthony.p.s. Have not been able to successfully install any FC on my home P1 166, with 64MB. RH 6.2 goes on fine. ----- Original Message ----- From: "Robert Citek" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 14, 2004 4:15 PM Subject: [cwe-lug] CWE-LUG meeting this Sunday > > Hello all, > > Just a reminder that this Sunday, December 19th, the CWE-LUG will be > meeting at the ACLU building on Laclede from 1pm-5pm. The CWE-LUG is an > OpenSource workshop and small projects group meeting in the Central West > End neighborhood of Saint Louis, Missouri. Its goals are: > > * To advocate the use of Free/Libre/OpenSource Software (FLOSS) on all > platforms, including Windows, MacOS X, Linux, and *BSD > * To educate people through forums, meetings, and mailing lists about > FLOSS > * To support users, advocates, and educators of FLOSS > * To socialize > > These meetings are free and open to the public. For more details about > the CWE-LUG, including a map with directions: > > http://cwelug.org/ > > People are welcome to bring their boxes to try to get > Free/Libre/OpenSource Software (FLOSS) installed, configured, whatever. If > anyone wants CDs of any FLOSS software, please e-mail me or the cwelug > list directly. You can also download files and ISOs from the CWELUG > download page via BitTorrent: > > http://www.cwelug.org/downloads > > Regards, > - Robert > http://www.cwelug.org/downloads > Help others get OpenSource. Distribute FLOSS for > Windows, Linux, *BSD, and MacOS X with BitTorrent > > _______________________________________________ > CWE-LUG mailing list > http://www.cwelug.org/ [EMAIL PROTECTED] > http://lists.firepipe.net/listinfo/cwe-lug > > > -- > No virus found in this incoming message. > Checked by AVG Anti-Virus. > Version: 7.0.289 / Virus Database: 265.5.3 - Release Date: 12/14/2004 > > -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.296 / Virus Database: 265.5.4 - Release Date: 12/15/2004 _______________________________________________ CWE-LUG mailing list http://www.cwelug.org/ [EMAIL PROTECTED] http://lists.firepipe.net/listinfo/cwe-lug From jeff Thu Dec 16 16:15:17 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:17 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:17 -0800 Received: from exprod5mx119.postini.com ([64.18.0.33] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHd-0000hu-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:17 -0800 Received: from source ([66.35.250.206]) (using TLSv1) by exprod5mx119.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:01 EST Received: from projects.sourceforge.net (sc8-sf-list2-b.sourceforge.net [10.3.1.8]) by sc8-sf-uberspam1.sourceforge.net (Postfix) with ESMTP id 9FD851D013C; Thu, 16 Dec 2004 08:18:01 -0800 (PST) Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.11] helo=sc8-sf-mx1.sourceforge.net) by sc8-sf-list2.sourceforge.net with esmtp (Exim 4.30) id 1CeyJc-0007a0-J2 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:20 -0800 Received: from [200.97.92.58] (helo=bbs.arcadian.com.br) by sc8-sf-mx1.sourceforge.net with esmtp (Exim 4.41) id 1CeyJW-0001Od-Ls for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:19 -0800 Message-id: <[EMAIL PROTECTED]> Subject: Re: [Andromda-devel] RE: Bpm4struts + select type for fields Precedence: bulk Priority: non-urgent X-Priority: 4 (Low) X-MSMail-Priority: Low To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] X-FC-AutoForward-By: "Walter =?ISO-8859-1?Q?Mour=E3o?=" <[EMAIL PROTECTED]> X-FC-AutoForward-By: "Walter =?ISO-8859-1?Q?Mour=E3o?=" <[EMAIL PROTECTED]> From: "Frederic Chapuis" <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-type: multipart/mixed; boundary="--=_--009fa93a.009fa939.bde7492f" X-Spam-Score: -1.8 (-) Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.0.9-sf.net List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/andromda-devel>, <mailto:[EMAIL PROTECTED]> List-Id: Developers of AndroMDA meet here. <andromda-devel.lists.sourceforge.net> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/andromda-devel>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum=andromda-devel> Date: Thu, 16 Dec 2004 14:16:15 -0300 X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0000) gt3 gt2 GT1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-1.8 required=4.0 tests=BAYES_00,HTML_50_60, HTML_FONTCOLOR_UNKNOWN,HTML_MESSAGE,MISSING_MIMEOLE,PRIORITY_NO_NAME autolearn=no version=2.64 This is a multi-part message in MIME format. ----=_--009fa93a.009fa939.bde7492f Content-type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Hey Wouter, I was wondering if Chad's pbm regarding select fields wasn't the same as I (except that I sometimes get the setters generated for the lists). Because I do have a page with two forms and one field displayed as select in a form and hidden in the other form. It is common to have a select which triggers a refresh (either through javascript or form submit) to synchronize form fields. Thus I believe it would be nice to fix this as regards issue BPM-124. Regards, Fred. ----- Original Message ----- From: [ mailto:[EMAIL PROTECTED] ]Wouter Zoons To: [ mailto:[EMAIL PROTECTED] ]'Chad Brandon' Cc: [ mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 7:28 PM Subject: [Andromda-devel] RE: Bpm4struts + select type for fields Hi Chad, In order to properly make use of “select” you should always preload the list data in the controller, the way to do this is to defer to a controller operation right before you enter the page containing the “select”, the operation MUST have a parameter with the exact same name and type as the one you have flagged as “select”. Doing this will generate accessors to the select value and corresponding backing list in the operation form interface as well as the actual action form -- Wouter =========================================================================== From: Chad Brandon [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 4:10 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Bpm4struts + select type for fields Hey Wouter, I’m trying to define a parameter of type “select” for a field (it’s a non collection type parameter), so I specify the tagged value @andromda.struts.view.field.type with a type of “select” but the code that is generated is uncompilable, it basically says my action form doesn’t implement the backing list for this field. Is there something else I need to set? Thanks, Chad ----=_--009fa93a.009fa939.bde7492f Content-Type: text/html; name="Attach0.html" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Attach0.html" <=21DOCTYPE HTML PUBLIC =22-//W3C//DTD HTML 4.0 Transitional//EN=22> <HTML xmlns=3D=22http://www.w3.org/TR/REC-html40=22 xmlns:v =3D=20 =22urn:schemas-microsoft-com:vml=22 xmlns:o =3D=20 =22urn:schemas-microsoft-com:office:office=22 xmlns:w =3D=20 =22urn:schemas-microsoft-com:office:word=22 xmlns:st1 =3D=20 =22urn:schemas-microsoft-com:office:smarttags=22><HEAD> <META http-equiv=3DContent-Type content=3D=22text/html; charset=3Diso-8859-= 1=22> <META content=3D=22MSHTML 6.00.2900.2523=22 name=3DGENERATOR><=21--=5Bif = =21mso=5D> <STYLE>v=5C:* =7B BEHAVIOR: url(=23default=23VML) =7D o=5C:* =7B BEHAVIOR: url(=23default=23VML) =7D w=5C:* =7B BEHAVIOR: url(=23default=23VML) =7D .shape =7B BEHAVIOR: url(=23default=23VML) =7D </STYLE> <=21=5Bendif=5D--><o:SmartTagType name=3D=22country-region=22=20 namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttags=22></o:SmartTa= gType><o:SmartTagType=20 name=3D=22place=22=20 namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttags=22></o:SmartTa= gType><o:SmartTagType=20 name=3D=22PersonName=22=20 namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttags=22></o:SmartTa= gType><=21--=5Bif =21mso=5D> <STYLE> st1=5C:*=7Bbehavior:url(=23default=23ieooui) =7D </STYLE> <=21=5Bendif=5D--> <STYLE> <=21-- /* Font Definitions */ =40font-face =7Bfont-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;=7D /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal =7Bmargin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:=22Times New Roman=22;=7D a:link, span.MsoHyperlink =7Bcolor:blue; text-decoration:underline;=7D a:visited, span.MsoHyperlinkFollowed =7Bcolor:purple; text-decoration:underline;=7D span.EmailStyle17 =7Bmso-style-type:personal; font-family:Arial; color:windowtext;=7D span.EmailStyle18 =7Bmso-style-type:personal-reply; font-family:Arial; color:navy;=7D =40page Section1 =7Bsize:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;=7D div.Section1 =7Bpage:Section1;=7D --> </STYLE> </HEAD> <BODY lang=3DEN-US vLink=3Dpurple link=3Dblue bgColor=3D=23ffffff> <DIV><FONT face=3DArial size=3D2>Hey Wouter,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2>I was wondering if Chad's pbm regarding se= lect=20 fields wasn't the same as I (except that I sometimes get the setters genera= ted=20 for the lists).</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Because I do have a page with two forms an= d=20 one field displayed as select in a form and hidden in the other=20 form.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>It is common to have a select which trigge= rs a=20 refresh (either through javascript or form submit) to synchronize form= =20 fields.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Thus I believe it would be nice to fix thi= s as=20 regards issue BPM-124.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT> </DIV> <DIV><FONT face=3DArial size=3D2>Regards,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Fred.</FONT></DIV> <BLOCKQUOTE dir=3Dltr=20 style=3D=22PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-= LEFT: =23000000 2px solid; MARGIN-RIGHT: 0px=22> <DIV style=3D=22FONT: 10pt arial=22>----- Original Message ----- </DIV> <DIV=20 style=3D=22BACKGROUND: =23e4e4e4; FONT: 10pt arial; font-color: black=22>= <B>From:</B>=20 <A title=3Dwouter.zoons=40advalvas.be=20 href=3D=22mailto:wouter.zoons=40advalvas.be=22>Wouter Zoons</A> </DIV> <DIV style=3D=22FONT: 10pt arial=22><B>To:</B> <A title=3Dchdbrandon=40ya= hoo.com=20 href=3D=22mailto:chdbrandon=40yahoo.com=22>'Chad Brandon'</A> </DIV> <DIV style=3D=22FONT: 10pt arial=22><B>Cc:</B> <A=20 title=3Dandromda-devel=40lists.sourceforge.net=20 href=3D=22mailto:andromda-devel=40lists.sourceforge.net=22>andromda-devel= =40lists.sourceforge.net</A>=20 </DIV> <DIV style=3D=22FONT: 10pt arial=22><B>Sent:</B> Wednesday, December 15, = 2004 7:28=20 PM</DIV> <DIV style=3D=22FONT: 10pt arial=22><B>Subject:</B> =5BAndromda-devel=5D = RE: Bpm4struts=20 + select type for fields</DIV> <DIV><BR></DIV> <DIV class=3DSection1> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22>Hi=20 <st1:country-region w:st=3D=22on=22><st1:place=20 w:st=3D=22on=22>Chad</st1:place></st1:country-region>,<o:p></o:p></SPAN><= /FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22><o:p> = ;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22>In order t= o properly=20 make use of =93select=94 you should always preload the list data in the=20 controller, the way to do this is to defer to a controller operation righ= t=20 before you enter the page containing the =93select=94, the operation MUST= have a=20 parameter with the exact same name and type as the one you have flagged a= s=20 =93select=94.<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22><o:p> = ;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22>Doing this= will=20 generate accessors to the select value and corresponding backing list in = the=20 operation form interface as well as the actual action=20 form<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22><o:p> = ;</o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22>--=20 Wouter<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial color=3Dnavy size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; COLOR: navy; FONT-FAMILY: Arial=22><o:p> = ;</o:p></SPAN></FONT></P> <DIV=20 style=3D=22BORDER-RIGHT: medium none; PADDING-RIGHT: 0in; BORDER-TOP: med= ium none; PADDING-LEFT: 4pt; PADDING-BOTTOM: 0in; BORDER-LEFT: blue 1.5pt s= olid; PADDING-TOP: 0in; BORDER-BOTTOM: medium none=22> <DIV> <DIV class=3DMsoNormal style=3D=22TEXT-ALIGN: center=22 align=3Dcenter><F= ONT=20 face=3D=22Times New Roman=22 size=3D3><SPAN style=3D=22FONT-SIZE: 12pt= =22> <HR tabIndex=3D-1 align=3Dcenter width=3D=22100%=22 SIZE=3D2> </SPAN></FONT></DIV> <P class=3DMsoNormal><B><FONT face=3DTahoma size=3D2><SPAN=20 style=3D=22FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Tahoma=22>Fro= m:</SPAN></FONT></B><FONT=20 face=3DTahoma size=3D2><SPAN style=3D=22FONT-SIZE: 10pt; FONT-FAMILY: Tah= oma=22> Chad=20 Brandon =5Bmailto:chdbrandon=40yahoo.com=5D <BR><B><SPAN=20 style=3D=22FONT-WEIGHT: bold=22>Sent:</SPAN></B> Wednesday, December 15, = 2004 4:10=20 PM<BR><B><SPAN style=3D=22FONT-WEIGHT: bold=22>To:</SPAN></B> <st1:Person= Name=20 w:st=3D=22on=22>wouter.zoons=40advalvas.be</st1:PersonName><BR><B><SPAN=20 style=3D=22FONT-WEIGHT: bold=22>Cc:</SPAN></B>=20 andromda-devel=40lists.sourceforge.net<BR><B><SPAN=20 style=3D=22FONT-WEIGHT: bold=22>Subject:</SPAN></B> Bpm4struts + select t= ype for=20 fields</SPAN></FONT><o:p></o:p></P></DIV> <P class=3DMsoNormal><FONT face=3D=22Times New Roman=22 size=3D3><SPAN=20 style=3D=22FONT-SIZE: 12pt=22><o:p> </o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; FONT-FAMILY: Arial=22>Hey=20 Wouter,<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; FONT-FAMILY: Arial=22><o:p> </o:p></SPAN= ></FONT></P> <P class=3DMsoNormal><FONT face=3DArial size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; FONT-FAMILY: Arial=22>I=92m trying to define = a parameter=20 of type =93select=94 for a field (it=92s a non collection type parameter)= , so I=20 specify the tagged value </SPAN></FONT>=40andromda.struts.view.field.type= with a=20 type of =93select=94 but the code that is generated is uncompilable, it b= asically=20 says my action form doesn=92t implement the backing list for this field.&= nbsp;=20 Is there something else I need to set?<o:p></o:p></P> <P class=3DMsoNormal><FONT face=3D=22Times New Roman=22 size=3D3><SPAN=20 style=3D=22FONT-SIZE: 12pt=22><o:p> </o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3D=22Times New Roman=22 size=3D3><SPAN=20 style=3D=22FONT-SIZE: 12pt=22>Thanks,<o:p></o:p></SPAN></FONT></P> <P class=3DMsoNormal><FONT face=3D=22Times New Roman=22 size=3D3><SPAN=20 style=3D=22FONT-SIZE: 12pt=22><o:p> </o:p></SPAN></FONT></P> <P class=3DMsoNormal><st1:place w:st=3D=22on=22><st1:country-region w:st= =3D=22on=22><FONT=20 face=3D=22Times New Roman=22 size=3D3><SPAN=20 style=3D=22FONT-SIZE: 12pt=22>Chad</SPAN></FONT></st1:country-region></st= 1:place><FONT=20 face=3DArial size=3D2><SPAN=20 style=3D=22FONT-SIZE: 10pt; FONT-FAMILY: Arial=22><o:p></o:p></SPAN></FON= T></P></DIV></DIV></BLOCKQUOTE></BODY></HTML> ----=_--009fa93a.009fa939.bde7492f-- ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Andromda-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/andromda-devel From jeff Thu Dec 16 16:15:33 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:33 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:33 -0800 Received: from exprod5mx97.postini.com ([64.18.0.85] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHt-0000ij-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:33 -0800 Received: from source ([146.82.138.6]) by exprod5mx97.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:17 EST Received: from localhost (localhost [127.0.0.1]) by murphy.debian.org (Postfix) with QMQP id B381D2E465; Thu, 16 Dec 2004 10:17:22 -0600 (CST) Old-Return-Path: <[EMAIL PROTECTED]> X-Original-To: [EMAIL PROTECTED] Received: from linuxwebguy.com (130.105.cm.sunflower.com [24.124.105.130]) by murphy.debian.org (Postfix) with ESMTP id 762B42E2DE for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:17:21 -0600 (CST) Received: from jeremy by linuxwebguy.com with local (Exim 4.34) id 1CeyKy-0005hB-H9 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 10:18:44 -0600 Date: Thu, 16 Dec 2004 10:18:44 -0600 To: [EMAIL PROTECTED] Subject: Re: xml viewer? Message-ID: <[EMAIL PROTECTED]> Mail-Followup-To: [EMAIL PROTECTED], [EMAIL PROTECTED] References: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> User-Agent: Mutt/1.5.6+20040722i From: Jeremy Turner <[EMAIL PROTECTED]> X-Rc-Virus: 2004-10-30_01 X-Rc-Spam: 2004-08-29_01 Resent-Message-ID: <[EMAIL PROTECTED]> Resent-From: [EMAIL PROTECTED] X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/372509 X-Loop: [EMAIL PROTECTED] List-Id: <debian-user.lists.debian.org> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.debian.org/debian-user/> Precedence: list Resent-Sender: [EMAIL PROTECTED] Resent-Date: Thu, 16 Dec 2004 10:17:22 -0600 (CST) X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0150) gt3 GT2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] Resent-Bcc: X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 On Wed, Dec 15, 2004 at 05:47:42PM -0500, Matt Price wrote: > anyone have suggestions for an xml viewer? I get losti n xml very > fast and would love a gui tool that displays a tree-like structure of > xml documents... It depends on what doctype you're using, but I like the clean look of conglomerate. It's more of an editor as well, but gives you a nice tree structure. Vim or probably emacs can give you xml with syntax highlighting, if that works. Jeremy -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] From jeff Thu Dec 16 16:15:24 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:24 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:24 -0800 Received: from exprod5mx32.postini.com ([64.18.0.187] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHk-0000iW-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:24 -0800 Received: from source ([66.35.250.206]) (using TLSv1) by exprod5mx32.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:18:08 PST Received: from projects.sourceforge.net (sc8-sf-list2-b.sourceforge.net [10.3.1.8]) by sc8-sf-uberspam1.sourceforge.net (Postfix) with ESMTP id 5832A1D00A1; Thu, 16 Dec 2004 08:18:03 -0800 (PST) Received: from sc8-sf-mx2-b.sourceforge.net ([10.3.1.12] helo=sc8-sf-mx2.sourceforge.net) by sc8-sf-list2.sourceforge.net with esmtp (Exim 4.30) id 1CeyJk-0007an-Jz for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:28 -0800 Received: from [200.97.92.58] (helo=bbs.arcadian.com.br) by sc8-sf-mx2.sourceforge.net with esmtp (Exim 4.41) id 1CeyJf-00022v-Az for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:28 -0800 Message-id: <[EMAIL PROTECTED]> Subject: RE: [Andromda-devel] RE: Bpm4struts + select type for fields Precedence: bulk Priority: non-urgent X-Priority: 4 (Low) X-MSMail-Priority: Low To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] X-FC-AutoForward-By: "Walter =?ISO-8859-1?Q?Mour=E3o?=" <[EMAIL PROTECTED]> X-FC-AutoForward-By: "Walter =?ISO-8859-1?Q?Mour=E3o?=" <[EMAIL PROTECTED]> From: "Chad Brandon" <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-type: multipart/mixed; boundary="--=_--009fa93d.009fa93c.bde74933" X-Spam-Score: -0.9 (/) Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.0.9-sf.net List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/andromda-devel>, <mailto:[EMAIL PROTECTED]> List-Id: Developers of AndroMDA meet here. <andromda-devel.lists.sourceforge.net> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/andromda-devel>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum=andromda-devel> Date: Thu, 16 Dec 2004 14:16:19 -0300 X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0000) gt3 gt2 GT1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-0.9 required=4.0 tests=BAYES_00,FORGED_YAHOO_RCVD, HTML_60_70,HTML_FONTCOLOR_UNKNOWN,HTML_MESSAGE,MISSING_MIMEOLE, PRIORITY_NO_NAME autolearn=no version=2.64 This is a multi-part message in MIME format. ----=_--009fa93d.009fa93c.bde74933 Content-type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Hey Frederic, We actually fixed it last night, forgot to close BPM-124 however (just did), thanks for the reminder! Chad =========================================================================== From: Frederic Chapuis [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16, 2004 7:32 AM To: [EMAIL PROTECTED]; 'Chad Brandon' Cc: [EMAIL PROTECTED] Subject: Re: [Andromda-devel] RE: Bpm4struts + select type for fields Hey Wouter, I was wondering if Chad's pbm regarding select fields wasn't the same as I (except that I sometimes get the setters generated for the lists). Because I do have a page with two forms and one field displayed as select in a form and hidden in the other form. It is common to have a select which triggers a refresh (either through javascript or form submit) to synchronize form fields. Thus I believe it would be nice to fix this as regards issue BPM-124. Regards, Fred. ----- Original Message ----- From: Wouter Zoons To: 'Chad Brandon' Cc: [EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 7:28 PM Subject: [Andromda-devel] RE: Bpm4struts + select type for fields Hi Chad, In order to properly make use of “select” you should always preload the list data in the controller, the way to do this is to defer to a controller operation right before you enter the page containing the “select”, the operation MUST have a parameter with the exact same name and type as the one you have flagged as “select”. Doing this will generate accessors to the select value and corresponding backing list in the operation form interface as well as the actual action form -- Wouter =========================================================================== From: Chad Brandon [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 4:10 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Bpm4struts + select type for fields Hey Wouter, I’m trying to define a parameter of type “select” for a field (it’s a non collection type parameter), so I specify the tagged value @andromda.struts.view.field.type with a type of “select” but the code that is generated is uncompilable, it basically says my action form doesn’t implement the backing list for this field. Is there something else I need to set? Thanks, Chad ----=_--009fa93d.009fa93c.bde74933 Content-Type: text/html; name="Attach0.html" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Attach0.html" <html xmlns:v=3D=22urn:schemas-microsoft-com:vml=22 xmlns:o=3D=22urn:schema= s-microsoft-com:office:office=22 xmlns:w=3D=22urn:schemas-microsoft-com:off= ice:word=22 xmlns:st1=3D=22urn:schemas-microsoft-com:office:smarttags=22 xm= lns=3D=22http://www.w3.org/TR/REC-html40=22> <head> <META HTTP-EQUIV=3D=22Content-Type=22 CONTENT=3D=22text/html; charset=3Dus-= ascii=22> <meta name=3DGenerator content=3D=22Microsoft Word 11 (filtered medium)=22>= <=21--=5Bif =21mso=5D> <style> v=5C:* =7Bbehavior:url(=23default=23VML);=7D o=5C:* =7Bbehavior:url(=23default=23VML);=7D w=5C:* =7Bbehavior:url(=23default=23VML);=7D .shape =7Bbehavior:url(=23default=23VML);=7D </style> <=21=5Bendif=5D--><o:SmartTagType namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttags=22 name=3D= =22country-region=22/> <o:SmartTagType namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttag= s=22 name=3D=22place=22/> <o:SmartTagType namespaceuri=3D=22urn:schemas-microsoft-com:office:smarttag= s=22 name=3D=22PersonName=22/> <=21--=5Bif =21mso=5D> <style> st1=5C:*=7Bbehavior:url(=23default=23ieooui) =7D </style> <=21=5Bendif=5D--> <style> <=21-- /* Font Definitions */ =40font-face =7Bfont-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;=7D /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal =7Bmargin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:=22Times New Roman=22;=7D a:link, span.MsoHyperlink =7Bcolor:blue; text-decoration:underline;=7D a:visited, span.MsoHyperlinkFollowed =7Bcolor:purple; text-decoration:underline;=7D span.EmailStyle17 =7Bmso-style-type:personal; font-family:Arial; color:windowtext;=7D span.EmailStyle18 =7Bmso-style-type:personal; font-family:Arial; color:navy;=7D span.EmailStyle19 =7Bmso-style-type:personal-reply; font-family:Arial; color:navy;=7D =40page Section1 =7Bsize:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in;=7D div.Section1 =7Bpage:Section1;=7D --> </style> <=21--=5Bif gte mso 9=5D><xml> <o:shapedefaults v:ext=3D=22edit=22 spidmax=3D=221026=22 /> </xml><=21=5Bendif=5D--><=21--=5Bif gte mso 9=5D><xml> <o:shapelayout v:ext=3D=22edit=22> <o:idmap v:ext=3D=22edit=22 data=3D=221=22 /> </o:shapelayout></xml><=21=5Bendif=5D--> </head> <body bgcolor=3Dwhite lang=3DEN-US link=3Dblue vlink=3Dpurple> <div class=3DSection1> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>Hey Frederic, <o:p></o:p></span></font= ></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>We actually fixed it last night, forgo= t to close BPM-124 however (just did), thanks for the reminder=21<o:p></o:p></sp= an></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><st1:country-region w:st=3D=22on=22><st1:place w:st= =3D=22on=22><font size=3D2 color=3Dnavy face=3DArial><span style=3D'font-size:10.0pt;font-f= amily:Arial; color:navy'>Chad</span></font></st1:place></st1:country-region><font size= =3D2 color=3Dnavy face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial= ; color:navy'><o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <div> <div class=3DMsoNormal align=3Dcenter style=3D'text-align:center'><font siz= e=3D3 face=3D=22Times New Roman=22><span style=3D'font-size:12.0pt'> <hr size=3D2 width=3D=22100%=22 align=3Dcenter tabindex=3D-1> </span></font></div> <p class=3DMsoNormal><b><font size=3D2 face=3DTahoma><span style=3D'font-si= ze:10.0pt; font-family:Tahoma;font-weight:bold'>From:</span></font></b><font size=3D2 face=3DTahoma><span style=3D'font-size:10.0pt;font-family:Tahoma'> Frederic= Chapuis =5Bmailto:frederic.chapuis=40free.fr=5D <br> <b><span style=3D'font-weight:bold'>Sent:</span></b> Thursday, December 16,= 2004 7:32 AM<br> <b><span style=3D'font-weight:bold'>To:</span></b> wouter.zoons=40advalvas.= be; 'Chad Brandon'<br> <b><span style=3D'font-weight:bold'>Cc:</span></b> andromda-devel=40lists.sourceforge.net<br> <b><span style=3D'font-weight:bold'>Subject:</span></b> Re: =5BAndromda-dev= el=5D RE: Bpm4struts + select type for fields</span></font><o:p></o:p></p> </div> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'><o:p> </o:p></span></font></p> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Hey Wouter,</span></font><o:p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'> <o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>I was wondering if <st1:country-region w:st=3D=22on=22><= st1:place w:st=3D=22on=22>Chad</st1:place></st1:country-region>'s pbm regarding sele= ct fields wasn't the same as I (except that I sometimes get the setters generated for= the lists).</span></font><o:p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Because I do have a page with two forms and one fie= ld displayed as select in a form and hidden in the other form.</span></font><o= :p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>It is common to have a select which triggers a refresh (either through javascript or form submit) to synchronize form fields.= </span></font><o:p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Thus I believe it would be nice to fix this as rega= rds issue BPM-124.</span></font><o:p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'> <o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Regards,</span></font><o:p></o:p></p> </div> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Fred.</span></font><o:p></o:p></p> </div> <blockquote style=3D'border:none;border-left:solid black 1.5pt;padding:0in = 0in 0in 4.0pt; margin-left:3.75pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt'> <div> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>----- Original Message ----- <o:p></o:p></span></font></= p> </div> <div style=3D'font-color:black'> <p class=3DMsoNormal style=3D'background:=23E4E4E4'><b><font size=3D2 face= =3DArial><span style=3D'font-size:10.0pt;font-family:Arial;font-weight:bold'>From:</span><= /font></b><font size=3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'> <= a href=3D=22mailto:wouter.zoons=40advalvas.be=22 title=3D=22wouter.zoons=40ad= valvas.be=22>Wouter Zoons</a> <o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><b><font size=3D2 face=3DArial><span style=3D'font-siz= e:10.0pt; font-family:Arial;font-weight:bold'>To:</span></font></b><font size=3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'> <a href=3D=22mailto:chdbrandon=40yahoo.com=22 title=3D=22chdbrandon=40yahoo.co= m=22>'Chad Brandon'</a> <o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><b><font size=3D2 face=3DArial><span style=3D'font-siz= e:10.0pt; font-family:Arial;font-weight:bold'>Cc:</span></font></b><font size=3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'> <a href=3D=22mailto:andromda-devel=40lists.sourceforge.net=22 title=3D=22andromda-devel=40lists.sourceforge.net=22>andromda-devel=40lists= .sourceforge.net</a> <o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><b><font size=3D2 face=3DArial><span style=3D'font-siz= e:10.0pt; font-family:Arial;font-weight:bold'>Sent:</span></font></b><font size=3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'> Wednesday,= December 15, 2004 7:28 PM<o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><b><font size=3D2 face=3DArial><span style=3D'font-siz= e:10.0pt; font-family:Arial;font-weight:bold'>Subject:</span></font></b><font size= =3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'> =5BAndromd= a-devel=5D RE: Bpm4struts + select type for fields<o:p></o:p></span></font></p> </div> <div> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'><o:p> </o:p></span></font></p> </div> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>Hi <st1:place w:st=3D=22on=22><st1:cou= ntry-region w:st=3D=22on=22>Chad</st1:country-region></st1:place>,<o:p></o:p></span></= font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>In order to properly make use of &=238220;select&=238221; you should always preload the list data in the con= troller, the way to do this is to defer to a controller operation right before you e= nter the page containing the &=238220;select&=238221;, the operation MUST have a= parameter with the exact same name and type as the one you have flagged as &=238220;select&=238221;.<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>Doing this will generate accessors to = the select value and corresponding backing list in the operation form interface= as well as the actual action form<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'>-- Wouter<o:p></o:p></span></font></p>= <p class=3DMsoNormal><font size=3D2 color=3Dnavy face=3DArial><span style= =3D'font-size: 10.0pt;font-family:Arial;color:navy'><o:p> </o:p></span></font></p> <div style=3D'border:none;border-left:solid blue 1.5pt;padding:0in 0in 0in = 4.0pt'> <div> <div class=3DMsoNormal align=3Dcenter style=3D'text-align:center'><font siz= e=3D3 face=3D=22Times New Roman=22><span style=3D'font-size:12.0pt'> <hr size=3D2 width=3D=22100%=22 align=3Dcenter tabIndex=3D-1> </span></font></div> <p class=3DMsoNormal><b><font size=3D2 face=3DTahoma><span style=3D'font-si= ze:10.0pt; font-family:Tahoma;font-weight:bold'>From:</span></font></b><font size=3D2 face=3DTahoma><span style=3D'font-size:10.0pt;font-family:Tahoma'> Chad Bra= ndon =5Bmailto:chdbrandon=40yahoo.com=5D <br> <b><span style=3D'font-weight:bold'>Sent:</span></b> Wednesday, December 15= , 2004 4:10 PM<br> <b><span style=3D'font-weight:bold'>To:</span></b> <st1:PersonName w:st=3D= =22on=22>wouter.zoons=40advalvas.be</st1:PersonName><br> <b><span style=3D'font-weight:bold'>Cc:</span></b> andromda-devel=40lists.sourceforge.net<br> <b><span style=3D'font-weight:bold'>Subject:</span></b> Bpm4struts + select= type for fields</span></font><o:p></o:p></p> </div> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>Hey Wouter,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D2 face=3DArial><span style=3D'font-size:1= 0.0pt; font-family:Arial'>I&=238217;m trying to define a parameter of type &=238220;select&=238221; for a field (it&=238217;s a non collection type pa= rameter), so I specify the tagged value </span></font>=40andromda.struts.view.field.t= ype with a type of &=238220;select&=238221; but the code that is generated is uncompilable, it basically says my action form doesn&=238217;t implement th= e backing list for this field. Is there something else I need to set?<o= :p></o:p></p> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'>Thanks,<o:p></o:p></span></font></p> <p class=3DMsoNormal><font size=3D3 face=3D=22Times New Roman=22><span styl= e=3D'font-size: 12.0pt'><o:p> </o:p></span></font></p> <p class=3DMsoNormal><st1:place w:st=3D=22on=22><st1:country-region w:st= =3D=22on=22><font size=3D3 face=3D=22Times New Roman=22><span style=3D'font-size:12.0pt'>Ch= ad</span></font></st1:country-region></st1:place><font size=3D2 face=3DArial><span style=3D'font-size:10.0pt;font-family:Arial'><o= :p></o:p></span></font></p> </div> </blockquote> </div> </body> </html> ----=_--009fa93d.009fa93c.bde74933-- ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Andromda-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/andromda-devel From jeff Thu Dec 16 16:15:43 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:43 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:43 -0800 Received: from exprod5mx20.postini.com ([64.18.0.160] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyI3-0000jG-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:43 -0800 Received: from source ([66.35.250.206]) (using TLSv1) by exprod5mx20.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:25 EST Received: from projects.sourceforge.net (sc8-sf-list2-b.sourceforge.net [10.3.1.8]) by sc8-sf-uberspam1.sourceforge.net (Postfix) with ESMTP id B5D081D0159; Thu, 16 Dec 2004 08:18:06 -0800 (PST) Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.11] helo=sc8-sf-mx1.sourceforge.net) by sc8-sf-list2.sourceforge.net with esmtp (Exim 4.30) id 1CeyJy-0007ba-27 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:42 -0800 Received: from web41203.mail.yahoo.com ([66.218.93.36]) by sc8-sf-mx1.sourceforge.net with smtp (Exim 4.41) id 1CeyJw-0001TM-LO for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:41 -0800 Received: (qmail 42671 invoked by uid 60001); 16 Dec 2004 16:17:35 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=Z3l//BtSYMfAEdEC0vaFECv9vf2Mx3JVwjqsFf/gyCmOQSf7x9b2DKWBTV9pzmGchS6KNuoZ3hCkb6UMGrskYA1OIKhBpCHOP82HxlTTIVHQPEGctghAxWaNiyhpGIn/28/FO0Ry9u2PHBvGdY0GJNkvdK66SqgAROYT/HdzsXg= ; Message-ID: <[EMAIL PROTECTED]> Received: from [24.61.29.131] by web41203.mail.yahoo.com via HTTP; Thu, 16 Dec 2004 08:17:35 PST From: Ming Yang <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Subject: using SNMP through CGI To: [EMAIL PROTECTED] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -3.9 (---) Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.0.9-sf.net Precedence: bulk List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/net-snmp-users>, <mailto:[EMAIL PROTECTED]> List-Id: General discussion forum for net-snmp users <net-snmp-users.lists.sourceforge.net> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/net-snmp-users>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum=net-snmp-users> X-Original-Date: Thu, 16 Dec 2004 08:17:35 -0800 (PST) Date: Thu, 16 Dec 2004 08:17:35 -0800 (PST) X-pstn-levels: (S:79.60683/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0000) gt3 gt2 GT1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-3.9 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS autolearn=no version=2.64 __________________________________ Do you Yahoo!? Dress up your holiday email, Hollywood style. Learn more. http://celebrity.mail.yahoo.com ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Net-snmp-users mailing list [EMAIL PROTECTED] Please see the following page to unsubscribe or change other options: https://lists.sourceforge.net/lists/listinfo/net-snmp-users From jeff Thu Dec 16 16:15:37 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:37 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:37 -0800 Received: from exprod5mx118.postini.com ([64.18.0.32] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyHx-0000iu-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:37 -0800 Received: from source ([64.125.133.206]) by exprod5mx118.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:21 EST Received: (qmail 23687 invoked by uid 5302); 16 Dec 2004 16:11:09 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk X-No-Archive: yes list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 23674 invoked from network); 16 Dec 2004 16:11:09 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=l+lKEXc1zKqOP9NAXc5rYhsBY1XshfuuebiewQqhrSm/RXyXrOga6CTDcgG6QUP2daHQIL5+jAYb6Isg/AnzkddOjcu9P5mrefm7XN5/LxM6JlkJys8nvmx+B5eBNRbYRpZbMMYxZ8JguixlQnN9rXVHPZ9jgK2iBBXKfWrVt+U= Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 11:11:08 -0500 From: Eric McKenna <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [OS-webwork] Select Tag with EnumeratedType and Velocity X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,HTML_MESSAGE autolearn=ham version=2.64 Hello All, Trying to use the Select tag in Velocity with an Enumerated type. Done easy enough in JSP's but can't find the right mix in a template. See any problems with what's below? #set($types = $stack.findValue("@[EMAIL PROTECTED]()")) #tag(Select "label='myLabel" "name='model.myType" "value='$!model.myLabel'" "list={$types}" "listKey='id'" "listValue='name'" ) YesNoType is a simple EnumeratedType with 0 mapped to YesNoType.NO and 1 to YES, with names 'No' and 'Yes' So, I'm trying to get <option value=0>No</option> <option value=1>Yes</option> but i get this instead. And 'id' and 'name' are litterly printed, they are not just place holders for numerical values. <TD vAlign=top align=right><SPAN class=label>myLabel: </SPAN></TD> <TD> <SELECT name=model.myType> <OPTION value=id selected>name</OPTION> </SELECT> </TD> Thoughts? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] From jeff Thu Dec 16 16:15:47 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:47 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:47 -0800 Received: from exprod5mx57.postini.com ([64.18.0.237] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyI7-0000jP-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:47 -0800 Received: from source ([66.35.250.206]) (using TLSv1) by exprod5mx57.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:18:29 PST Received: from projects.sourceforge.net (sc8-sf-list2-b.sourceforge.net [10.3.1.8]) by sc8-sf-uberspam1.sourceforge.net (Postfix) with ESMTP id C1D201D0707; Thu, 16 Dec 2004 08:18:08 -0800 (PST) Received: from sc8-sf-mx2-b.sourceforge.net ([10.3.1.12] helo=sc8-sf-mx2.sourceforge.net) by sc8-sf-list2.sourceforge.net with esmtp (Exim 4.30) id 1CeyK5-0007bw-I3 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:49 -0800 Received: from mxout2.mailhop.org ([63.208.196.166] ident=mailnull) by sc8-sf-mx2.sourceforge.net with esmtp (Exim 4.41) id 1CeyK5-00028L-3w for [EMAIL PROTECTED]; Thu, 16 Dec 2004 08:17:49 -0800 Received: from mx1.mailhop.org ([63.208.196.170]) by mxout2.mailhop.org with esmtp (Exim 4.43) id 1CeyK4-0000Hc-G2 for [EMAIL PROTECTED]; Thu, 16 Dec 2004 11:17:48 -0500 Received: from web80904.mail.scd.yahoo.com ([66.218.95.67]) by mx1.mailhop.org with smtp (Exim 4.42) id 1CeyK4-000Mek-9s for [EMAIL PROTECTED]; Thu, 16 Dec 2004 11:17:48 -0500 Received: (qmail 81388 invoked by uid 60001); 16 Dec 2004 16:17:42 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=r2FCjZmp59umwVptc3Hl0+578Q22FKp7vEB/UlN/tpvoRVbdp2aRxVlghvK4l85TJyaXknCGqjjW0dYgzSHtCN9KbJLCZyuel4ITeam1TpSPQ7sVJK3GyNyqZTm4QUAg0WRnrS0zua7DVBzHeO9s88zxd9JZPpvS+fSjH06nIBs= ; Message-ID: <[EMAIL PROTECTED]> Received: from [141.156.108.144] by web80904.mail.scd.yahoo.com via HTTP; Thu, 16 Dec 2004 08:17:42 PST From: Xin-Yi Liu <[EMAIL PROTECTED]> Subject: Re: [Nutch-general] Questions Regarding Nutch To: [EMAIL PROTECTED] In-Reply-To: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mail-Handler: MailHop by DynDNS.org X-Spam-Score: 0.1 (/) Delivered-To: [EMAIL PROTECTED] X-Spam-Score: -4.2 (----) Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.0.9-sf.net Precedence: bulk Reply-To: [EMAIL PROTECTED] List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/nutch-general>, <mailto:[EMAIL PROTECTED]> List-Id: <nutch-general.lists.sourceforge.net> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/nutch-general>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum=nutch-general> Date: Thu, 16 Dec 2004 08:17:42 -0800 (PST) X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0000) gt3 gt2 GT1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.0 required=4.0 tests=BAYES_00,FORGED_YAHOO_RCVD autolearn=no version=2.64 i don't know when was the last time you've looked at java, but java performance hasn't been an issue for years. JIT technology has java running at near-native compiled speeds. application startup times are always slower, but once it's running, java is pretty darn fast. nutch is designed to scale to multiple machines using commodity hardware (cheap!) which even further mitigates any performance issues that might arise from using java. --- Ivan Sekulovic <[EMAIL PROTECTED]> wrote: > Using Java for Nutch does have disadvantages > (performance issues is the > main one brought up), but there are far more > advantages of this > approach. I think of Nutch as platform for > development of large numbers > of search engines. In my opinion, to use Java for > development is the key > decision that will lead to success of Nutch (plugin > architecture is the > second one). In the same way that decision to use C > instead of assembler > language for development of Unix, was one of key > reason for success (C > code was 20-30% less efficient than one that would > be written using > assembler language). > > Best Regards, > Sekula > > > Sky Woo wrote: > > > Hello, > > > > A few programmers and I have been debating which > "open source" search > > engine to use to develop our software on. The > issues that keep coming > > up is that Nutch is written with Java, and the > impression is that it > > will be significantly slower than a web search > written in C/C++. How > > can a search engine using an interpreted language > compete with large, > > optimized search engines such as Google, Yahoo and > MSN? Is Java a > > liability in scaling the system up? > > > > Also, it has been brought up many times that it's > still unknown when > > Nutch 1.0, the release that the community > considers ready for > > prime-time, will be available. Can Nutch catch up > this quickly to > > other search engines through open source > collaboration? > > > > Thanks. > > > > Sincerely Yours, > > > > Sky Woo > > > > [¸Õ»Û¶] - Hu Si Qi ("CK") > > > > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>, > [EMAIL PROTECTED] > > <mailto:[EMAIL PROTECTED]> > > > > __________________________________ Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. http://info.mail.yahoo.com/mail_250 ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Nutch-general mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nutch-general From jeff Thu Dec 16 16:15:41 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:41 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@mail-archive.com Delivery-date: Thu, 16 Dec 2004 08:15:41 -0800 Received: from exprod5mx125.postini.com ([64.18.0.39] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyI1-0000j3-00 for <archive@mail-archive.com>; Thu, 16 Dec 2004 08:15:41 -0800 Received: from source ([64.125.133.206]) by exprod5mx125.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:21 EST Received: (qmail 26379 invoked by uid 5302); 16 Dec 2004 16:18:10 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk X-No-Archive: yes list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 26364 invoked from network); 16 Dec 2004 16:18:10 -0000 Message-ID: <[EMAIL PROTECTED]> X-Originating-IP: [207.236.187.140] X-Originating-Email: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] From: "Ernst Perpignand" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: Thu, 16 Dec 2004 11:17:08 -0500 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed X-OriginalArrivalTime: 16 Dec 2004 16:18:06.0088 (UTC) FILETIME=[D328E080:01C4E38A] Subject: [OS-webwork] SessionMap is null when accessed from sitemesh decorators X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Hello, I've just realized that ActionContext.getContext().getSession() returns null inside a SiteMesh decorator, while the same call durring action execution returns a properly instantiated SessionMap. I was wondering if anyone has noticed this. Anyone has an idea how to fix this? Any help would be greatly appreciated. Thanks , -- Ernst Perpignand [EMAIL PROTECTED] [EMAIL PROTECTED] -------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] From jeff Thu Dec 16 16:15:53 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:53 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:53 -0800 Received: from exprod5mx127.postini.com ([64.18.0.41] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyID-0000jY-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:53 -0800 Received: from source ([128.36.229.215]) by exprod5mx127.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:18:37 PST Received: from haskell.cs.yale.edu (localhost.localdomain [127.0.0.1]) by www.haskell.org (Postfix) with ESMTP id C672636895F; Thu, 16 Dec 2004 10:46:58 -0500 (EST) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from haskell.cs.yale.edu (localhost.localdomain [127.0.0.1]) by www.haskell.org (Postfix) with ESMTP id 0D3B236895C; Thu, 16 Dec 2004 10:46:57 -0500 (EST) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from note.orchestra.cse.unsw.EDU.AU (note.orchestra.cse.unsw.EDU.AU [129.94.242.24]) by www.haskell.org (Postfix) with ESMTP id D372336881E for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 10:46:54 -0500 (EST) Received: From pill00 (for [EMAIL PROTECTED]) With LocalMail ; Fri, 17 Dec 2004 02:58:46 +1100 From: [EMAIL PROTECTED] (Donald Bruce Stewart) To: [EMAIL PROTECTED] Date: Fri, 17 Dec 2004 02:58:46 +1100 Message-Id: <[EMAIL PROTECTED]> X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.5 Precedence: list Cc: Subject: [nightly] 16-Dec-2004 build of STABLE on OpenBSD/x86 (manzano) X-BeenThere: [EMAIL PROTECTED] List-Id: All CVS commit messages <cvs-all.haskell.org> List-Unsubscribe: <http://www.haskell.org/mailman/listinfo/cvs-all>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://www.haskell.org//pipermail/cvs-all> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <http://www.haskell.org/mailman/listinfo/cvs-all>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Build description = STABLE on OpenBSD/x86 (manzano) Build location = /home/dons/stable Build config file = /home/dons/stable/nightly/site/pls/conf-STABLE-manzano Nightly build started on manzano at Thu Dec 16 23:00:38 EST 2004. using existing source tree ... ok. (GHC Version 6.2.2) **** Updating source tree ... ok. **** Building stage 1 compiler ... ok. **** Building stage 2 compiler ... ok. **** Building stage 3 compiler ... ok. **** Building testsuite tools ... ok. **** Running tests ... ok (summary below). **** Building compiler bindist ... ok. **** Building .hc tar file ... ok. **** Attempting .hc bootstrap ... ok. **** Running nofib ... ok. (1 failure) **** Running nofib ... ok. (1 failure) **** Running nofib ... ok. (1 failure) **** Running nofib ... ok. (1 failure) **** Running nofib ... ok. (1 failure) **** Publishing distfiles ... ok. **** Publishing logs ... ok. Logs are at ftp://ftp.cse.unsw.edu.au/pub/users/dons/ghc/stable/logs Dists are at ftp://ftp.cse.unsw.edu.au/pub/users/dons/ghc/stable/dist All done! Nightly build finished successfully at Fri Dec 17 02:55:59 EST 2004 ------------- GHC Test summary --------------------- OVERALL SUMMARY for test run started at Fri Dec 17 00:20:04 EST 2004 1062 total tests, which gave rise to 4079 test cases, of which 0 caused framework failures 569 were skipped 3473 expected passes 37 expected failures 0 unexpected passes 0 unexpected failures ---------------------------------------------------- Nightly run ended at Fri Dec 17 02:55:59 EST 2004 _______________________________________________ Cvs-ghc mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/cvs-ghc From jeff Thu Dec 16 16:15:54 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:15:54 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:15:54 -0800 Received: from exprod5mx115.postini.com ([64.18.0.87] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyIE-0000jh-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:15:54 -0800 Received: from source ([209.237.227.199]) by exprod5mx115.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 09:18:38 MST Received: (qmail 25804 invoked by uid 500); 16 Dec 2004 16:18:37 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Post: <mailto:[EMAIL PROTECTED]> List-Id: "Velocity Developers List" <velocity-dev.jakarta.apache.org> Reply-To: "Velocity Developers List" <[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 25786 invoked by uid 99); 16 Dec 2004 16:18:37 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_60_70,HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from forio.com (HELO forio.com) (66.98.176.9) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 16 Dec 2004 08:16:37 -0800 Received: (qmail 13154 invoked from network); 16 Dec 2004 16:16:09 -0000 Received: from adsl-64-169-88-39.dsl.snfc21.pacbell.net (HELO Apollo) (64.169.88.39) by broadcast.forio.com with RC4-MD5 encrypted SMTP; 16 Dec 2004 16:16:09 -0000 Message-ID: <[EMAIL PROTECTED]> From: "Will Glass-Husain" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Wiki question - preventing Hyperlink Date: Thu, 16 Dec 2004 08:15:02 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_002A_01C4E347.57592660" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Virus-Checked: Checked X-pstn-levels: (S:49.70841/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,HTML_MESSAGE autolearn=ham version=2.64 ------=_NextPart_000_002A_01C4E347.57592660 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Quick question... Anyone know how to prevent a hyperlink in the Wiki with Caps in the = middle of words. E.g. ClasspathResourceLoader? By the way, I like the collaborative concept of the Wiki, but I'm = finding the markup language to be really annoying. What's wrong with = good ol' HTML? (Is it really more intuitive to say '''This is Bold''' = than <b>This is bold</b>?) WILL _______________________________________ Forio Business Simulations Will Glass-Husain phone (415) 440-7500 x89 mobile (415) 235-4293 [EMAIL PROTECTED] www.forio.com ------=_NextPart_000_002A_01C4E347.57592660-- From jeff Thu Dec 16 16:16:02 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:16:02 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:16:02 -0800 Received: from exprod5mx89.postini.com ([64.18.0.77] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyIM-0000jw-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:16:02 -0800 Received: from source ([213.136.52.31]) by exprod5mx89.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:18:45 PST Received: (qmail 20229 invoked by uid 109); 16 Dec 2004 16:18:44 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm List-ID: <maxdb.mysql.com> Precedence: bulk List-Help: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Post: <mailto:[EMAIL PROTECTED]> List-Archive: http://lists.mysql.com/maxdb/24047 Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 20210 invoked from network); 16 Dec 2004 16:18:44 -0000 Received-SPF: pass (lists.mysql.com: domain of [EMAIL PROTECTED] designates 155.56.68.140 as permitted sender) X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: php module segfaults when not freeing results Date: Thu, 16 Dec 2004 17:18:27 +0100 Message-ID: <[EMAIL PROTECTED]> Thread-Topic: php module segfaults when not freeing results Thread-Index: AcTiixfoNbTPH9rJRrCH8CPFkg7pJAA/2VAA From: "Simenec, Thomas" <[EMAIL PROTECTED]> To: =?iso-8859-1?Q?=22H=F6tzel=2C_J=FCrgen=22?= <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> X-OriginalArrivalTime: 16 Dec 2004 16:18:27.0382 (UTC) FILETIME=[DFDA1560:01C4E38A] X-SAP: out X-SAP: out X-Virus-Checked: Checked X-pstn-levels: (S:91.45712/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Hi, The sources for the corrected version of MaxDB PHP can be downloaded = from: http://sapmats-de.sap-ag.de/download/download.cgi?id=3DVGK48RSY2LKPS7YW92= ZA2XZWB6S1BF0EJIGCJEJ4MNBFJCE0FE The corrected Windows DLLs can be downloaded from: http://sapmats-de.sap-ag.de/download/download.cgi?id=3DCNS4EY86SBTRJ66BHL= 4MOYERU3P4ZYJMKI713VNBN8S6G5G4UP Regards, Thomas Simenec SAP Labs Berlin -----Original Message----- From: "H=F6tzel, J=FCrgen" [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 15. Dezember 2004 10:48 To: [EMAIL PROTECTED] Subject: php module segfaults when not freeing results Hi, I use PHP4.3.9, this is the phpinfo string: PHP MaxDB Library version 7.5.00.20 SQLDBC Client API version libSQLDBC 7.5.0 BUILD 019-121-082-363 Steps to reproduce: $result2 =3D maxdb_query($DB, "select * from TEST"); $result2 =3D maxdb_query($DB, "select * from TEST"); Segfaults with the following backtrace: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 8192 (LWP 16550)] 0x401cf5a8 in main_arena () from /lib/i686/libc.so.6 (gdb) bt #0 0x401cf5a8 in main_arena () from /lib/i686/libc.so.6 #1 0x4039cbc4 in IFR_ErrorHndl::clear () from /opt/sdb/programs/lib/libSQLDBC_C.so #2 0x40338024 in IFR_ResultSet::close () from /opt/sdb/programs/lib/libSQLDBC_C.so #3 0x402b1187 in SQLDBC::SQLDBC_ResultSet::close () from /opt/sdb/programs/lib/libSQLDBC_C.so #4 0x402a7e9e in SQLDBC_ResultSet_close () from /opt/sdb/programs/lib/libSQLDBC_C.so #5 0x4021b476 in php_maxdb_free_result (res=3D0x81e2c0c) at /tmp/maxdb-22/ext/maxdb/php_maxdb.c:324 #6 0x4021b5af in _free_maxdb_result (rsrc=3D0x81e72e4) at /tmp/maxdb-22/ext/maxdb/php_maxdb.c:368 #7 0x0814e1bf in list_entry_destructor (ptr=3D0x81e72e4) at /tmp/php-4.3.9/Zend/zend_list.c:177 #8 0x0814c6f9 in zend_hash_del_key_or_index (ht=3D0x81a4d40, = arKey=3D0x0, nKeyLength=3D0, h=3D2, flag=3D1) at = /tmp/php-4.3.9/Zend/zend_hash.c:527 #9 0x0814df11 in _zend_list_delete (id=3D2) at /tmp/php-4.3.9/Zend/zend_list.c:56 #10 0x081466c9 in _zval_dtor (zvalue=3D0x81e72ac) at /tmp/php-4.3.9/Zend/zend_variables.c:69 #11 0x0815ac36 in zend_assign_to_variable (result=3D0x81e7040, = op1=3D0x81e7050, op2=3D0x81e7060, value=3D0x81e61f4, type=3D4, Ts=3D0xbffea040) at /tmp/php-4.3.9/Zend/zend_execute.c:480 #12 0x08155e4d in execute (op_array=3D0x81e263c) at /tmp/php-4.3.9/Zend/zend_execute.c:1383 #13 0x08147d9a in zend_execute_scripts (type=3D8, retval=3D0x0, = file_count=3D3) at /tmp/php-4.3.9/Zend/zend.c:891 #14 0x0811abf4 in php_execute_script (primary_file=3D0xbffec780) at /tmp/php-4.3.9/main/main.c:1735 #15 0x0815caa4 in main (argc=3D2, argv=3D0xbffec834) at /tmp/php-4.3.9/sapi/cgi/cgi_main.c:1592 But=20 $result2 =3D maxdb_query($DB, "select * from Authors"); maxdb_free_result($result2); $result2 =3D maxdb_query($DB, "select * from Authors"); works fine. Regards, J=FCrgen ------------------------------------------- Cyperfection - agentur f=FCr neue medien gmbh J=FCrgen H=F6tzel mailto:[EMAIL PROTECTED] Karl-Kraemer-Str. 4 - 67061 Ludwigshafen fon: 0621/587104-0 - fax: 0621/587104-90=20 http://www.cyperfection.de/ Anfahrt - http://www.cyperfection.de/Anfahrt/ <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< --=20 MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: = http://lists.mysql.com/[EMAIL PROTECTED] -- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED] From jeff Thu Dec 16 16:16:07 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:16:07 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:16:07 -0800 Received: from exprod5mx122.postini.com ([64.18.0.36] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyIR-0000kA-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:16:07 -0800 Received: from source ([63.251.223.186]) by exprod5mx122.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 10:18:51 CST Received: (qmail 23191 invoked by uid 514); 16 Dec 2004 15:58:50 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Unsubscribe: <mailto:[EMAIL PROTECTED]> List-Subscribe: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 23185 invoked from network); 16 Dec 2004 15:58:49 -0000 Delivered-To: [EMAIL PROTECTED] X-Spam-Check-By: la.mx.develooper.com Received-SPF: pass (x1.develooper.com: domain of [EMAIL PROTECTED] designates 63.251.223.186 as permitted sender) X-Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm X-Mailing-List-Name: perl6-internals Delivered-To: mailing list [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received-SPF: pass (x1.develooper.com: local policy) Message-ID: <[EMAIL PROTECTED]> Date: Thu, 16 Dec 2004 10:58:32 -0500 From: Sam Ruby <[EMAIL PROTECTED]> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Leopold Toetsch <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: cvs commit: parrot vtable.tbl References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Old-Spam-Check-By: la.mx.develooper.com X-Old-Spam-Status: No, hits=-3.1 required=8.0 tests=BAYES_00,RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Leopold Toetsch wrote: > Sam Ruby wrote: > >> Leopold Toetsch wrote: >> >>> cvsuser 04/12/15 02:36:29 >>> >>> Modified: . vtable.tbl >>> Log: >>> stub in object vtables >> >> [snip] >> >>> +void add_parent(PMC* parent) >>> +void become_parent(PMC* class) >>> +INTVAL class_type() >>> +void add_method(STRING* method) >>> +void remove_method(STRING* method) >>> +STRING* namespace_name() >>> +PMC* new_singleton() >>> +PMC* get_anonymous_subclass() >> >> Cool. Are there plans for opcodes? I could make use of add_parent >> and add_method... > > add_parent has already an opcode C<addparent>. add_method should > probably get one, yes. But add_method is a bit more complicated. It's > called automatically during bytecode loading, *if* the class is already > existing. E.g. > > .namespace ["Integer"] > .sub hex method > > but the problem is code like this: > > newclass cl, "Foo" > ... > .namespace ["Foo"] > .sub foo method > > now the class isn't constructed, when the bytecode is loaded and the old > Parrot_store_global is used. But if you load the method code with > load_bytecode again add_method is called. My need is to be able to call add_method for methods defined as @ANON. From the perspective of Parrot, namespaces should be viewed a perfectly reasonable mechanism for implementing classes, and there perhaps should even be special support for enabling classes to be defined that way... but: there should be no built in assumptions that all classes are defined in this way. - Sam Ruby From jeff Thu Dec 16 16:16:08 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:16:08 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:16:08 -0800 Received: from exprod5mx115.postini.com ([64.18.0.87] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyIS-0000kL-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:16:08 -0800 Received: from source ([63.246.13.90]) by exprod5mx115.postini.com ([exprod5mx115.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:18:51 EST Received: from ms-smtp-01.tampabay.rr.com [65.32.5.131] by mail.declude.com with ESMTP (SMTPD32-8.05) id A2A0DE700F2; Thu, 16 Dec 2004 11:06:56 -0500 Received: from SandKing (255-78.202-68.tampabay.rr.com [68.202.78.255]) by ms-smtp-01.tampabay.rr.com (8.12.10/8.12.7) with ESMTP id iBGG6uYu015329 for <[EMAIL PROTECTED]>; Thu, 16 Dec 2004 11:06:57 -0500 (EST) Message-ID: <[EMAIL PROTECTED]> From: "Darin Cox" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Subject: Re: [Declude.Virus] Getting hammered by viruses Date: Thu, 16 Dec 2004 11:06:59 -0500 Organization: 4C Web 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.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: Symantec AntiVirus Scan Engine X-Note: This E-mail was scanned for viruses by Declude Virus (www.declude.com) X-NRecips: 1 X-Reverse-IP: ms-smtp-01-smtplb.tampabay.rr.com X-Weight: -6 (MAILDEFLECTOR, SPFUNKNOWN, HEUR1, SPAMCHK, IPNOTINMX) X-Country-Chain: UNITED STATES->destination. X-Declude-Sender: [EMAIL PROTECTED] [65.32.5.131] X-Declude-Spoolname: Db2a00de700f27efb.SMD Precedence: bulk Sender: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 For us it seemed to lag slightly behind the new Bagles that came out in early to mid Nov. Darin. ----- Original Message ----- From: "Markus Gufler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 16, 2004 10:53 AM Subject: RE: [Declude.Virus] Getting hammered by viruses Hmmm can't see any "step" near to 2004-11-16 but the virus creating this big wall of infected messages is Zafi.D, appeared some days ago. Markus > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Darin Cox > Sent: Thursday, December 16, 2004 4:46 PM > To: [EMAIL PROTECTED] > Subject: Re: [Declude.Virus] Getting hammered by viruses > > Hi Markus, > > Sounds like you're experiencing what we saw starting on > November 16th... a tenfold increase in spam overnight. > > After a little over a week ours settled down ton about 3 > times the amount of spam prior to the 16th. That has been > steady ever since. > > We've attributed it to the recent spate of viruses, creating zombies. > Analysis shows our zombie spam has increased dramatically, > requiring more reliance on content filtering and dynamic IP detection. > > Darin. > > > ----- Original Message ----- > From: "Markus Gufler" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, December 16, 2004 10:24 AM > Subject: [Declude.Virus] Getting hammered by viruses > > > Anyone else is seeing this? > > Last week we had an average of 2750 viruses each day. > Two days ago this number increased to 9000. > Yesterday we've catched 19000 viruses. > >From the other 16000 messages 9600 was spam. > > Markus > > > --- > [This E-mail was scanned for viruses by Declude Virus > (http://www.declude.com)] > > --- > This E-mail came from the Declude.Virus mailing list. To > unsubscribe, just send an E-mail to [EMAIL PROTECTED], and > type "unsubscribe Declude.Virus". The archives can be found > at http://www.mail-archive.com. > > --- > [This E-mail was scanned for viruses by Declude Virus > (http://www.declude.com)] > > --- > This E-mail came from the Declude.Virus mailing list. To > unsubscribe, just send an E-mail to [EMAIL PROTECTED], and > type "unsubscribe Declude.Virus". The archives can be found > at http://www.mail-archive.com. > > --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.Virus mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.Virus". The archives can be found at http://www.mail-archive.com. --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.Virus mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.Virus". The archives can be found at http://www.mail-archive.com. From jeff Thu Dec 16 16:16:19 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:16:19 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:16:19 -0800 Received: from exprod5mx12.postini.com ([64.18.0.152] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyId-0000kU-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:16:19 -0800 Received: from source ([66.70.73.150]) by exprod5mx12.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:19:02 PST Received: from dp.samba.org (localhost [127.0.0.1]) by lists.samba.org (Postfix) with ESMTP id 0DCEB163CCD for <archive@jab.org>; Thu, 16 Dec 2004 16:19:02 +0000 (GMT) X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Received: from smtp10.bethel.edu (nadir.its.bethel.edu [140.88.32.36]) by lists.samba.org (Postfix) with ESMTP id 0F993163934; Thu, 16 Dec 2004 16:17:32 +0000 (GMT) Received: from [140.88.32.48] (monique.its.bethel.edu [140.88.32.48]) (authenticated bits=0) by smtp10.bethel.edu (8.12.8/8.12.8) with ESMTP id iBGGHTcN003155 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Thu, 16 Dec 2004 10:17:31 -0600 In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <[EMAIL PROTECTED]> Content-Transfer-Encoding: 7bit From: David Schlenk <[EMAIL PROTECTED]> Subject: Re: [Samba] CAN-2004-1154 : Integer overflow could lead to remote code execution in Samba 2.x, 3.0.x <= 3.0.9 Date: Thu, 16 Dec 2004 10:17:29 -0600 To: [EMAIL PROTECTED] X-Mailer: Apple Mail (2.619) X-Scanned-By: MIMEDefang 2.38 Cc: Gerald Carter <[EMAIL PROTECTED]> X-BeenThere: [EMAIL PROTECTED] X-Mailman-Version: 2.1.4 Precedence: list List-Id: General questions regarding Samba <samba.lists.samba.org> List-Unsubscribe: <https://lists.samba.org/mailman/listinfo/samba>, <mailto:[EMAIL PROTECTED]> List-Archive: <http://lists.samba.org/archive/samba> List-Post: <mailto:[EMAIL PROTECTED]> List-Help: <mailto:[EMAIL PROTECTED]> List-Subscribe: <https://lists.samba.org/mailman/listinfo/samba>, <mailto:[EMAIL PROTECTED]> Sender: [EMAIL PROTECTED] Errors-To: [EMAIL PROTECTED] X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.8624 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Today's security patch doesn't work if you also want to use the printing patch for 3.0.9 mentioned recently on this list. Build error: Linking bin/smbd printing/printing.o(.text+0x2d4b): In function `print_queue_update': printing/printing.c:1421: undefined reference to `smb_xmalloc' collect2: ld returned 1 exit status make: *** [bin/smbd] Error 1 This is patching with the printing patch first, followed by the security patch, using the %patch macros of rpm. I'll try the other way around, but it takes awhile on my slow test box, so I thought I'd see if anyone had any success building with both patches. On Dec 16, 2004, at 6:17 AM, Gerald Carter wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > ========================================================== > == > == Subject: Possible remote code execution > == CVE ID#: CAN-2004-1154 > == > == Versions: Samba 2.x & 3.0.x <= 3.0.9 > == > == Summary: A potential integer overflow when > == unmarshalling specific MS-RPC requests > == from clients could lead to heap > == corruption and remote code execution. > == > ========================================================== > > > =========== > Description > =========== > > Remote exploitation of an integer overflow vulnerability > in the smbd daemon included in Samba 2.0.x, Samba 2.2.x, > and Samba 3.0.x prior to and including 3.0.9 could > allow an attacker to cause controllable heap corruption, > leading to execution of arbitrary commands with root > privileges. > > Successful remote exploitation allows an attacker to > gain root privileges on a vulnerable system. In order > to exploit this vulnerability an attacker must possess > credentials that allow access to a share on the Samba server. > Unsuccessful exploitation attempts will cause the process > serving the request to crash with signal 11, and may leave > evidence of an attack in logs. > > > ================== > Patch Availability > ================== > > A patch for Samba 3.0.9 (samba-3.0.9-CAN-2004-1154.patch) > can be downloaded from > > http://www.samba.org/samba/ftp/patches/security/ > > The patch has been signed with the "Samba Distribution > Verification Key" (ID F17F9772). > > > ============================= > Protecting Unpatched Servers > ============================= > > The Samba Team always encourages users to run the latest > stable release as a defense against attacks. However, > under certain circumstances it may not be possible to > immediately upgrade important installations. In such > cases, administrators should read the "Server Security" > documentation found at > > http://www.samba.org/samba/docs/server_security.html. > > > ======= > Credits > ======= > > This security issue was reported to Samba developers by > iDEFENSE Labs. The vulnerability was discovered by Greg > MacManus, iDEFENSE Labs. > > > ========================================================== > == Our Code, Our Bugs, Our Responsibility. > == The Samba Team > ========================================================== > > > > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.4 (GNU/Linux) > Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org > > iD8DBQFBwXzdIR7qMdg1EfYRAvnVAKCgJxELPsRo2oIwBcUq+wKNkjB3BwCgzn5l > 3PtHselUE/u/xxC7PRYpxyA= > =8JRM > -----END PGP SIGNATURE----- > > -- > To unsubscribe from this list go to the following URL and read the > instructions: https://lists.samba.org/mailman/listinfo/samba > -- David Schlenk Operating Systems Analyst Bethel University Saint Paul, Minnesota [EMAIL PROTECTED] -- To unsubscribe from this list go to the following URL and read the instructions: https://lists.samba.org/mailman/listinfo/samba From jeff Thu Dec 16 16:16:25 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:16:25 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:16:25 -0800 Received: from exprod5mx126.postini.com ([64.18.0.40] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyIj-0000kh-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:16:25 -0800 Received: from source ([216.92.131.4]) by exprod5mx126.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 11:19:09 EST Received: (qmail 28774 invoked by uid 1010); 16 Dec 2004 16:17:40 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 28652 invoked by uid 1010); 16 Dec 2004 16:17:39 -0000 Delivered-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] Date: Thu, 16 Dec 2004 17:17:37 +0100 To: [EMAIL PROTECTED] Subject: #31128 [NEW]: apache2 restart causing divide by zero when php is introduce newly From: "kameshj at fastmail dot fm" <[EMAIL PROTECTED]> X-PHP-Bug: 31128 X-PHP-Version: 5.0.3 X-PHP-Category: Apache2 related X-PHP-OS: Any Operating System X-PHP-Status: Open Message-ID: <[EMAIL PROTECTED]> X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:94.5022 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 From: kameshj at fastmail dot fm Operating system: Any Operating System PHP version: 5.0.3 PHP Bug Type: Apache2 related Bug description: apache2 restart causing divide by zero when php is introduce newly Description: ------------ I found apache2 crashes with Divide by Zero error in the following scenario. This is with the PHP built with ZTS mode. Hope some other defect will occur for Non-ZTS. With regards Kamesh Jayachandran -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php Reproduce code: --------------- 1)Disable php module and start apache2. 2)enable php in the httpd.conf 3)httpd restart(Not stop and start) 4)make a request to any php page apache crashes with divide by zero. I drilled down on this issue. My investigation is, Apache on startup calls php_apache_server_startup twice one to set a user data for a userdata_key "apache2filter_post_config" and another to call tsrm_startup and all. While restart it simply calls this function once which misses out call to tsrm_startup and hence tsrm_tls_table_size is just zero inside TSRM which causes divide by zero error in THREAD_HASH_OF macro. This can be attributed to the loading/unloading/reloading of apache modules to do some syntax check on its configuration(Correct me if I am wrong This info I got from Rasmus in one of the mail thread.) While startup post_config hook is called twice, But once when restart is called. Expected result: ---------------- Apache2 should not crash Actual result: -------------- Apache2 crashes with Divide by Zero error. -- Edit bug report at http://bugs.php.net/?id=31128&edit=1 -- Try a CVS snapshot (php4): http://bugs.php.net/fix.php?id=31128&r=trysnapshot4 Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=31128&r=trysnapshot50 Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=31128&r=trysnapshot51 Fixed in CVS: http://bugs.php.net/fix.php?id=31128&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=31128&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=31128&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=31128&r=needscript Try newer version: http://bugs.php.net/fix.php?id=31128&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=31128&r=support Expected behavior: http://bugs.php.net/fix.php?id=31128&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=31128&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=31128&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=31128&r=globals PHP 3 support discontinued: http://bugs.php.net/fix.php?id=31128&r=php3 Daylight Savings: http://bugs.php.net/fix.php?id=31128&r=dst IIS Stability: http://bugs.php.net/fix.php?id=31128&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=31128&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=31128&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=31128&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=31128&r=mysqlcfg From jeff Thu Dec 16 16:17:51 2004 Return-Path: [EMAIL PROTECTED] Delivery-Date: Thu Dec 16 08:17:51 2004 Return-path: <[EMAIL PROTECTED]> Envelope-to: archive@jab.org Delivery-date: Thu, 16 Dec 2004 08:17:51 -0800 Received: from exprod5mx50.postini.com ([64.18.0.217] helo=psmtp.com) by toko.jab.org with smtp (Exim 3.36 #1 (Debian)) id 1CeyK7-0000lQ-00 for <archive@jab.org>; Thu, 16 Dec 2004 08:17:51 -0800 Received: from source ([209.237.227.199]) by exprod5mx50.postini.com ([64.18.4.10]) with SMTP; Thu, 16 Dec 2004 08:20:35 PST Received: (qmail 30140 invoked by uid 500); 16 Dec 2004 16:20:30 -0000 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk Reply-To: [EMAIL PROTECTED] list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Received: (qmail 30131 invoked by uid 99); 16 Dec 2004 16:20:30 -0000 Received-SPF: pass (hermes.apache.org: local policy) Received: from mail74.messagelabs.com (HELO mail74.messagelabs.com) (216.82.244.99) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 16 Dec 2004 08:19:15 -0800 X-VirusChecked: Checked X-Env-Sender: [EMAIL PROTECTED] X-Msg-Ref: server-12.tower-74.messagelabs.com!1103213904!22785141!1 X-StarScan-Version: 5.4.2; banners=-,-,- X-Originating-IP: [205.143.75.32] Received: (qmail 23909 invoked from network); 16 Dec 2004 16:18:24 -0000 Received: from unknown (HELO SRV-EXVS01-DAL.intervoice.int) (205.143.75.32) by server-12.tower-74.messagelabs.com with SMTP; 16 Dec 2004 16:18:24 -0000 X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Element with type="xsd:any" Date: Thu, 16 Dec 2004 10:18:21 -0600 Message-ID: <[EMAIL PROTECTED]> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Element with type="xsd:any" Thread-Index: AcTi/MrIDFMT1V3IT6GJDBkkMOPqdwAjX6pg From: "Samuel Solon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> X-Virus-Checked: Checked X-pstn-levels: (S:99.90000/99.90000 R:95.9108 P:95.9108 M:86.5533 C:98.9754 ) X-pstn-settings: 1 (0.1500:0.0750) GT3 gt2 gt1 r p m c X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham version=2.64 Well that explains that problem. If I use "anyType", I'll need some way to specify a deserializer for the element.=20 The actual deserializer is trivial, just return the MessageElement, but is there an easy way to map the deserializer to that element?=20 Actually it would be ok to treat all "anyType" the same.=20 I'd like to generate everything from the WSDL definition as part of our build process and not have to modify the resulting wsdd to add typeMapping entries. Sam > -----Original Message----- > From: Jeff Greif [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 15, 2004 6:18 PM > To: [EMAIL PROTECTED] > Subject: Re: Element with type=3D"xsd:any" >=20 > xsd:any is not a defined type. You probably mean xsd:anyType. > ----- Original Message ----- > From: "Samuel Solon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, December 15, 2004 3:08 PM > Subject: Element with type=3D"xsd:any" >=20 >=20 > I'm using WSDL to define messages that have one (or more) elements > containing arbitrary XML and I'm running into problems. >=20 > I tried: >=20 > <xsd:complexType name=3D"AddContact"> > <xsd:sequence> > <xsd:element name=3D"UserId" type=3D"xsd:string"/> > <xsd:element name=3D"AbookId" type=3D"xsd:string"/> > <xsd:element name=3D"Contact" type=3D"xsd:any"/> > </xsd:sequence> > </xsd:complexType> >=20 >=20