Re: struts action servlet interaction with jsp files

2006-12-15 Thread Frank W. Zammetti
Note however that there is no JSTL equivalent for most of the Struts HTML taglib... the Struts HTML tags are Struts-aware, i.e., will automatically pull data from your form beans to populate the fields... JSTL can't do that automatically. Aside from the HTML taglib, Laurie is of course right,

Re: struts action servlet interaction with jsp files

2006-12-15 Thread Laurie Harper
Simply put, the Struts tags pre-date JSTL. The JSTL tags provide equivalent functionality in many areas and more besides. Since they are a standard and more complete solution than the equivalent Struts tags, their use is recommended. The Struts tags have been kept for backwards compatibility a

Re: struts action servlet interaction with jsp files

2006-12-09 Thread Rick Schumeyer
Can I ask, what is the reason for avoiding the Struts tags and using the JSTL tags? (It begs the question, what is the purpose of the struts tags?) Wendy Smoak wrote: On 12/9/06, Fabio Miranda Hamburger <[EMAIL PROTECTED]> wrote: How can I 'send' this array from fooBarStrutsAction.java, and

Re: struts action servlet interaction with jsp files

2006-12-09 Thread Wendy Smoak
On 12/9/06, Fabio Miranda Hamburger <[EMAIL PROTECTED]> wrote: How can I 'send' this array from fooBarStrutsAction.java, and its method: public ActionForward execute(...) TO a jsp file, let's say display.jsp? and by the way, how to access that array within the JSP file. I think I am missing a c

struts action servlet interaction with jsp files

2006-12-09 Thread Fabio Miranda Hamburger
Hello, I am migrating some PHP application to struts to take advantage of MVC. Check this situation: I have a struts action in fooBarStrutsAction.java. After a request, this action perform a database transaction and arrange the final result in an array. Now I want to display this array in a