mailer taglib - How to write database data into mail tags?

2003-04-03 Thread Dean Singley
Hi All, I've been trying to put emails read from a MySQL database into the body of the mailer taglib "setrecipient", "addrecipient" and "replyto" tags as follows: [EMAIL PROTECTED] casbah.gatech.edu This is a message.

Re: lookup when a name contains a dot

2003-04-03 Thread Brian Buckley
> Does work? Good guess but, no, that gives me a JasperException. Brian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: lookup when a name contains a dot

2003-04-03 Thread Karr, David
I can only see one way to do this, and it's not simple. You'd have to write a custom tag that would create a page-scoped variable which is a single map variable that has been merged from the following maps, in order: application, session, request, and page. Then you could reference your dotted va

RE: lookup when a name contains a dot

2003-04-03 Thread Wendy Smoak
Brian wrote: > if a value with the name "a.b" could be in either request or > session scope, neither > or > by themselves would work. > Is there syntax to do this? Does work? -- Wendy Smoak

lookup when a name contains a dot

2003-04-03 Thread Brian Buckley
Hello, What is the JSTL syntax to lookup a value if the name of one's value has a dot in, and if one wants the lookup to honor the standard scoping lookup order rules (first page-scope, then request-scope, then session-scope, then application-scope) ? For example, if a value with the name "a.b" c