problems with struts html tag lib

2005-10-29 Thread Troy Bull
I am trying to include a <%= variable %> type thing in an html:submit tag and it doesn't evaluate the <%= variable %> is there a way to make it evaluate this? Or is there a way to include dynamic contect in this tag. In this case it is inside a loop and "variable" changes each time through th

Re: Problem with logic:iterate (and nested:iterate) and indexed form items - Help required

2005-10-29 Thread Murray Collingwood
Hi Mike Thats easy. Outer loop needs to specify the "indexId" parameter as in: Then you can use whatever inner loop (or loops) you want. Inside here you can refer to the 'memberIndex' as in: HTH Cheers mc On 29 Oct 2005 at 15:29, Mike Manley wrote: > Thanks for that - but I think I'

Re: PATH

2005-10-29 Thread Aladin Alaily
Hi Jim, You said that you have a struts application in $TOMCAT_HOME/webapps/STRUTS_APP and you want it to access content in the $TOMCAT_HOME/webapps/EMAIL_APP. The following may be helpful for what you are trying to do. Tomcat as a policy file which dictate what an application can and cannot

jps:useBean documentation?

2005-10-29 Thread Pierre Thibault
Hello, This question may seems stupid but where is the documentation the JSP tags? There is the doc at http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html for the JSTL but the tag jsp:useBean is not there like a lot of others. So where are they documented? -- A+ Pierre ---

OT Ann : Roomity v 1.5 w/ video and html editor + JDNC article

2005-10-29 Thread netsql
-- http://Struts_User_List.roomity.com";>Struts_User_List.roomity.com Your Roomity Broadband Webapp ~~1130632438770~~ --

PATH

2005-10-29 Thread Jim Douglas
To all, I have TOMCAT 5.5 up and running and a webapp in the TOMCAT_HOME/webpps/XYZ directory I have an email webapp in TOMCAT_HOME/webapps/email that I want the abilty to share with all other webapps. I am having a problem configuring STRUTS, it seems that the workers.properties file won't

Lenya/Struts

2005-10-29 Thread Jim Douglas
Has anyone integrated a STRUTS webapp with Lenya? I am curently working through the least painful way to do it and any input would be helpful.. Thanks, Jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: How to use Email Templates for struts?

2005-10-29 Thread Paul Benedict
You can also just use basic JSP technology. You can use a servlet include to retrieve the output from a JSP, which could your mail. __ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com

Re: How to use Email Templates for struts?

2005-10-29 Thread Martijn Smit
You can use velocity (http://jakarta.apache.org/velocity/) for generating your templates. When you're done parsing you feed it to the JavaMail API. Velocity is a very powerful template engine and you can even use is for Struts' "Views". good luck, Martijn Martin Gainty wrote: Zsolt- Most o

Re: How to use Email Templates for struts?

2005-10-29 Thread Martin Gainty
Zsolt- Most of the Mail Templaing engines I have seen cost money But there is a shareware template library available at jsourcery http://jsourcery.com/output/java.net/atleap/0.5-rc1/com/blandware/atleap/model/core/MailTemplate.html HTH, Martin- - Original Message - From: "Zsolt" <[EMAIL

How to use Email Templates for struts?

2005-10-29 Thread Zsolt
Hi, I want to send my struts-1.2.7 application emails using templates. Which template engine should I use? Zsolt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

multibox error

2005-10-29 Thread Chris Pat
Hello I am using TC5.5.9,JSTL1.1,Struts1.2 With this code:           I have made sure my actionForm has the s/getter for checkbox1, checkbox2 & strArray. Made sure the reset is setting the booleans to false. The page comes up without the html:multibox tag, s

Re: Problem with logic:iterate (and nested:iterate) and indexed form items - Help required

2005-10-29 Thread Mike Manley
Thanks for that - but I think I've not explained my problem properly. The problem is that the bean containing the data is NOT the one in the inner loop but the bean iterated through in the outer loop: I want to be able to access as from within the inner loop. familymembers[0].surname, family

Re: Struts Validation Rule for Single Java Bean form-property

2005-10-29 Thread Yujun Liang
Martin, Thanks for your help. My problem was not displaying the bean. What I wanted to know is whether there is a way to validate the property of the Java Bean defined in the form bean. How to define the validation rule for Source code. 1. Form Bean Definition, 2. Java Bean, *package*

Re: Struts Validation Rule for Single Java Bean form-property

2005-10-29 Thread Martin Gainty
Yujun- You can reference locale specific strings with bean:message.. for implementation details take a look at Rick Reumanns page http://www.reumann.net/struts/lesson3/step9.do and of course implementing locale specific strings dentified within ApplicationResources.properties (in your case it m