--- "Wannheden, Knut" <[EMAIL PROTECTED]> wrote:
> after
>       <property name="c" value="${a}.${b}"/> 
> has been executed 'c' will have the value 'aaa.bbb'.
>       <property name="aaa.bbb" value="x"/>
> property 'aaa.bbb' will have the value 'x'.
>       <property name="d" value="${c}"/>
> property 'd' will have the value of 'c' which is 'aaa.bbb'.
> 
> to get the thing you're talking about to work, you would have to write:
>       <property name="d" value="${${c}}"/>
> but this is a nested property and unfortunately not allowed.

See bug #1733 in the bugs database -- a couple of alternative approaches
were suggested, as well as a little task that allows for dereferencing:
  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1733

Diane

=====
([EMAIL PROTECTED])



__________________________________________________
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to