No getProperties() on ActionErrors?

2003-12-08 Thread Jeroen Breedveld
=${error}//div /c:forEach My guess is that this doesn't work because the ActionErrors class has a properties() method and not a getProperties() method. Does anyone know a way to iterate over the ActionError objects in the ActionError object using the EL language? Thanks and regards, Jeroen

Struts and frames: what about the request scope?

2003-10-30 Thread Jeroen Breedveld
Hi all, I'm trying to use struts with frame but the problem I have is that forms disappear from the request scope when I forward to an jsp containing a frameset to other actions like this: !-- jsp containing form submitting to someAction -- action path=/somePage

Help needed using struts with database and sessions

2003-10-14 Thread Jeroen Breedveld
Hi all, I'm creating a webapp using struts and a database. The jsp pages access (for read and write) a resource object in a custom ActionForm like this: html:text property=resource.name/ (causes setName() to be called on the resource object when submitting form) bean:write name=XMLResourceForm

Simple validator question

2003-10-03 Thread Jeroen Breedveld
Hi all, Is it possible to supply the msg element with the value the user entered in the form as the content of the arg element? My key errors.login.email.invalid is: {0} is an invalid email address So when a user enters 'foo' as an email adres I want an error message saying: 'foo is an invalid

RE: Simple validator question

2003-10-03 Thread Jeroen Breedveld
Hi Jeff, || -Original Message- || From: Jeff Kyser [mailto:[EMAIL PROTECTED] || Sent: vrijdag 3 oktober 2003 14:24 || To: Struts Users Mailing List || Subject: Re: Simple validator question || ... || field property=emailField depends=email ||

RE: Simple validator question

2003-10-03 Thread Jeroen Breedveld
|| -Original Message- || From: Fenderbosch, Eric [mailto:[EMAIL PROTECTED] || Sent: vrijdag 3 oktober 2003 15:19 || To: Struts Users Mailing List || Subject: RE: Simple validator question || || || I haven't tried it, but would something like this work? || || field

Property files containing countries

2003-09-05 Thread Jeroen Breedveld
Hi all, Can someone please tell me if someone outthere is maintaining property files containing all country names and their translations in different languages? I need them for a webapp I'm creating. thanks and regards, Jeroen -- X-Hive Corporation e-mail: [EMAIL PROTECTED]

Tiles attributes in jsp tags problems

2003-07-23 Thread Jeroen Breedveld
Hi all, I changed from using the HTML embed tag to using the jsp:include tag to embed a applet in a webpage. The problem however is that since I'm using tiles I can't get the values of the attributes passed to tiles in the attributes of the jsp:include tag because it is itself a jsp-tag. Can