HI,
I have a pile of simple JavaBeans that I use for many everyday task. Most of the
methods have arguments and return strings or booleans and rowsets. Is there any way I
can use these with JSTL? As an example I have a method that sends mail with JavaMail
and a typical use of a method would be:
myBean.sendMail( myaddress, myAttachment, myMessageBody, mysubject);
So having imported the bean use the JSP useBean tag would that allow me more access to
the JSTL taglibs?
I am thinking of say using JSTL param to insert the value into the method:
myBean.sendMail( ${param.myaddress}, etc...);
Sloppy but you get what I mean. :)
Stefan