Re: How to have a generated string processed by Struts?

2003-01-30 Thread Craig R. McClanahan
On Wed, 29 Jan 2003, Luiz-Otavio Zorzella wrote: > Date: Wed, 29 Jan 2003 08:40:22 -0800 > From: Luiz-Otavio Zorzella <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: How to have a generated string proce

Re: How to have a generated string processed by Struts?

2003-01-30 Thread Luiz-Otavio Zorzella
Well, it's rather simple -- I wanted to be able to use the power of struts constructs, even if the content was not known a priori. But I just realized that if I can do that (and I'm pretty sure there's a way to pass internally a string for the Struts taglibs to parse), I'd be incurring in a gr

RE: How to have a generated string processed by Struts?

2003-01-29 Thread Derek Richardson
OTECTED]] > Sent: Wednesday, January 29, 2003 11:52 AM > To: [EMAIL PROTECTED] > Subject: Re: How to have a generated string processed by Struts? > > > AFAIK, you can't do that. > > David > > > > > > > >From: Luiz-Otavio Zorzella &l

RE: How to have a generated string processed by Struts?

2003-01-29 Thread Wendy Smoak
> What if I wanted to generate Struts tags dynamically, say something like > this: > <%= myClass.output () %> > public class MyClass { > public String output () { > // I want this to be further processed by Struts!!! > return "" > } > } Can you explain more about what you're trying to

RE: How to have a generated string processed by Struts?

2003-01-29 Thread Nicolas Robert
Nicolas -Original Message- From: Luiz-Otavio Zorzella [mailto:[EMAIL PROTECTED]] Sent: mercredi 29 janvier 2003 17:40 To: [EMAIL PROTECTED] Subject: How to have a generated string processed by Struts? What if I wanted to generate Struts tags dynamically, say something like this: <%= m

Re: How to have a generated string processed by Struts?

2003-01-29 Thread David Graham
AFAIK, you can't do that. David From: Luiz-Otavio Zorzella <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: How to have a generated string processed by Struts? Date: Wed, 29 Jan 2003 08:40:22 -0800 W

How to have a generated string processed by Struts?

2003-01-29 Thread Luiz-Otavio Zorzella
What if I wanted to generate Struts tags dynamically, say something like this: <%= myClass.output () %> public class MyClass { public String output () { // I want this to be further processed by Struts!!! return "" } } How to do it? Thanks, Zorzella --