RE: Mapped Property? Iinterpolated runtime values are forbidden?

2003-01-22 Thread Michael Marrotte
Seems to work by a key first: -Original Message- From: Michael Marrotte [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:24 AM To: Struts Users Mailing List Subject: RE: Mapped Property? Iinterpolated runtime values are forbidden? Like I say, the

RE: Mapped Property? Iinterpolated runtime values are forbidden?

2003-01-22 Thread Michael Marrotte
]] Sent: Wednesday, January 22, 2003 9:41 AM To: Struts Users Mailing List Subject: RE: Mapped Property? Iinterpolated runtime values are forbidden? See JSP Spec: 2.13.1: "The expression must appear by itself (multiple expressions, and mixing of expressions and string constants are not perm

RE: Mapped Property? Iinterpolated runtime values are forbidden?

2003-01-22 Thread Robert Taylor
See JSP Spec: 2.13.1: "The expression must appear by itself (multiple expressions, and mixing of expressions and string constants are not permitted)." You could try this: [JSP] ... <% String property = "payCitation(" + unpaidCitation.getCitation() + ")"; %> > -Orig