You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Galbreath, Mark" <Ga...@tessco.com> on 2002/10/04 13:51:44 UTC

FW: [FRIDAY] failure notice

Okay, Eddie, cut it out!

-----Original Message-----
From: MAILER-DAEMON@nagoya.betaversion.org
[mailto:MAILER-DAEMON@nagoya.betaversion.org]
Sent: Friday, October 04, 2002 7:50 AM
To: Galbreath@tessco.com
Subject: failure notice


Hi. This is the qmail-send program at nagoya.betaversion.org.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

<qm...@nagoya.betaversion.org>:
ezmlm-send: fatal: message already has a Mailing-List header (maybe I should
be a sublist) (#5.7.2)
ezmlm-gate: fatal: Fatal error from child

--- Below this line is a copy of the message.

Return-Path: <Ga...@tessco.com>
Received: (qmail 28998 invoked by uid 98); 4 Oct 2002 11:50:01 -0000
Delivered-To: qmvirus-jakarta-struts-user@nagoya.betaversion.org
X-Antivirus: nagoya (v4218 created Aug 14 2002)
Received: (qmail 28977 invoked from network); 4 Oct 2002 11:49:59 -0000
Received: from daedalus.apache.org (HELO apache.org) (63.251.56.142)
  by nagoya.betaversion.org with SMTP; 4 Oct 2002 11:49:59 -0000
Received: (qmail 60562 invoked by uid 500); 4 Oct 2002 11:49:16 -0000
Delivered-To: apmail-jakarta-struts-user@jakarta.apache.org
Received: (qmail 60554 invoked from network); 4 Oct 2002 11:49:14 -0000
Received: from dialin-c1-35.129.133.keyaccess.nl (HELO topicus.nl)
(195.35.129.133)
  by daedalus.apache.org with SMTP; 4 Oct 2002 11:49:14 -0000
Received: from pop.vuurwerk.nl ([62.250.3.109]) by topicus.nl ([])
	with DomainPOP (MDaemon.PRO.v6.0.4.R)
	for <st...@jakarta.apache.org>; Fri, 04 Oct 2002 13:48:42
+0200
Delivered-To: topicu@vuurwerk.nl
Received: (qmail 76411 invoked by uid 25); 4 Oct 2002 11:38:32 -0000
Delivered-To: virtualdomains-brand@topicus.nl
X-Envelope-To: brand@topicus.nl
Received: (qmail 76235 invoked from network); 4 Oct 2002 11:38:29 -0000
Received: from host-131-49-18-192.iplanet.com (HELO nagoya.betaversion.org)
(192.18.49.131)
  by anger.vuurwerk.nl with SMTP; 4 Oct 2002 11:38:29 -0000
Received: (qmail 13674 invoked by uid 97); 4 Oct 2002 11:38:59 -0000
Mailing-List: contact struts-user-help@jakarta.apache.org; run by ezmlm
Precedence: bulk
List-Unsubscribe: <ma...@jakarta.apache.org>
List-Subscribe: <ma...@jakarta.apache.org>
List-Help: <ma...@jakarta.apache.org>
List-Post: <ma...@jakarta.apache.org>
List-Id: "Struts Users Mailing List" <struts-user.jakarta.apache.org>
Reply-To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Delivered-To: mailing list struts-user@jakarta.apache.org
Received: (qmail 13662 invoked by uid 98); 4 Oct 2002 11:38:58 -0000
X-Antivirus: nagoya (v4218 created Aug 14 2002)
Message-ID: <E0...@XMAIL01.Tessco.Com>
From: "Galbreath, Mark" <Ga...@tessco.com>
To: 'Struts Users Mailing List' <st...@jakarta.apache.org>
Subject: RE: JavaBean question (OOPS)
Date: Fri, 4 Oct 2002 07:38:12 -0400 
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain;
	charset="iso-8859-1"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-MDRemoteIP: 62.250.3.109
X-MDRcpt-To: struts-user@jakarta.apache.org
X-MDaemon-Deliver-To: struts-user@jakarta.apache.org
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N

Please cite a more precise reference to Hans' book.

-----Original Message-----
From: Dan Tran [mailto:danttran@hotmail.com]
Sent: Thursday, October 03, 2002 7:17 PM
To: Struts Users Mailing List
Subject: Re: JavaBean question (OOPS)


Thank you for the example,   for now I will try to
use it .

However, I also happen to see a example in Hans Bergsten 's JSP pages,

which is similar to what I have but using the standard
java Date class which only implements toString() and
valueOf(String ...)

Does it mean, JSP hardwire the translation with some specific primative type
and some specifict classes?

-Dan
----- Original Message -----
From: "Brandon Goodin" <ma...@phase.ws>
To: "Struts Users Mailing List" <st...@jakarta.apache.org>
Sent: Thursday, October 03, 2002 3:54 PM
Subject: RE: JavaBean question (OOPS)


> the secon setter was a copy and past it should be
>
> private String stringTimestamp;
>
> public void setStringTimestamp(String stringTimestamp){
> this.stringTimestamp = stringTimestamp;
> }
>
> -----Original Message-----
> From: Brandon Goodin [mailto:mail@phase.ws]
> Sent: Thursday, October 03, 2002 4:52 PM
> To: Struts Users Mailing List
> Subject: RE: JavaBean question
>
>
> Since i don't completely know your bean... i'll make a guess at it.
>
> It would probably look something like this:
>
> public class MyTimeStamp  {
>
> private Timestamp timestamp;
>
> public MyTimeStamp(){
> }
>
> public void setTimestamp(Timestamp timestamp){
> this.timestamp = timestamp;
> }
>
> public Timestamp getTimestamp(){
> return timestamp;
> }
>
> public void setTimestamp(Timestamp timestamp){
> this.timestamp = timestamp;
> }
>
> public String getStringTimestamp(){
> return timestamp.toString()
> }
> }
>
> then use:
>
> <html:text property="myTimestamp.stringTimestamp" >
>
> Brandon Goodin
> Phase Web and Multimedia
> P(406)862-2245
> F(406)862-0354
> http://www.phase.ws
>
> -----Original Message-----
> From: Dan Tran [mailto:danttran@hotmail.com]
> Sent: Thursday, October 03, 2002 4:29 PM
> To: Struts Users Mailing List
> Subject: Re: JavaBean question
>
>
> Hi Brandon,  thank you for  the quick reply
>
> What I try to achieve is somehow move a String
> presetantation of a object between JSP page and a JavaClass
>
> As far as I know how, if my java class provides set/get
> method for primitive types, JSP can move the data for me
>
> However, my java class get/set property method uses a object define by me
> (ex  MyTimestamp)
>
> The question here is What kind of method(s) in the MyTimestamp do I need
to
> implement  inorder for JSP to move the string presentation of my
MyTimestamp
> to the JSP form?
>
> Hope I am able to be specific this time.
>
> -Dan
>
> ----- Original Message -----
> From: "Brandon Goodin" <ma...@phase.ws>
> To: "Struts Users Mailing List" <st...@jakarta.apache.org>
> Sent: Thursday, October 03, 2002 3:16 PM
> Subject: RE: JavaBean question
>
>
> > If you are asking how you would get the value of "B" from the "A" bean.
> The
> > you could use the nested property reference dot notation like:
<html:text
> > property="a.b.someProperty">. Otherwise, you need to be more specific.
> What
> > are you trying to accomplish?
> >
> > Brandon Goodin
> > Phase Web and Multimedia
> > P(406)862-2245
> > F(406)862-0354
> > http://www.phase.ws
> >
> > -----Original Message-----
> > From: Dan Tran [mailto:danttran@hotmail.com]
> > Sent: Thursday, October 03, 2002 4:04 PM
> > To: Struts Users Mailing List
> > Subject: JavaBean question
> >
> >
> > Hi I have a java bean A that has a property which is defined as a nother
> > java object B.
> >
> >
> > class A {
> >     private B _b;
> >
> >     public A() {}
> >     public B getB() { return _b ;}
> >     public void setB( B b) { _b = b ; }
> > }
> >
> > How can I implement B so that it can be "transfered" from bean to a form
> > like
> >
> > <html:text property="b" >
> >
> >
> > Any suggestion?
> >
> > -Dan
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> <ma...@jakarta.apache.org>
> >
>
> --
> To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
>
>
>
> --
> To unsubscribe, e-mail:
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
>
>
>
> --
> To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
> For additional commands, e-mail:
<ma...@jakarta.apache.org>
>

--
To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>

--
To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: FW: [FRIDAY] failure notice

Posted by Eddie Bush <ek...@swbell.net>.
LOL - it's not me!  Those headers look strangely familiar though!

Galbreath, Mark wrote:

>Okay, Eddie, cut it out!
>

-- 
Eddie Bush




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>