Re: tiles DTD

2007-08-15 Thread Stephen Souness
o put the DTD directly in the WEB-INF directly and reference a URI to that location. Otherwise, API >= 2.3 will be able to find it directly from your WEB-INF/lib directory. Check your web.xml to see what version you're using. Paul Stephen Souness wrote: Hi guys, I'm pretty sure

tiles DTD

2007-08-14 Thread Stephen Souness
he top of tiles-definitions.xml). When the website that hosts that DTD is unavailable (such as right now) the application fails to make the Struts action servlet available. How can I remove this external dependency? -- Stephen Souness -

Re: Display of the processing message when the page is submitted

2006-06-14 Thread Stephen Souness
vided by struts. -- Stephen Souness Shasirekha Engala wrote: hi there is a small requirement - when the form is submitted at the time of processing a dialogbox should be shown with the processing message and the dialogbox should be closed when the processing of the request is completed

Re: BeanUtils Indexed Properties Issue

2005-10-30 Thread Stephen Souness
Ignore my last post - it turned out that my reset() implementation on my Form was reseting more than it should have been. -- Stephen Stephen Souness wrote: Hi All, Does anyone know when the issue mentioned under the heading "BeanUtils Indexed Properties Issue" on: http://wiki.

BeanUtils Indexed Properties Issue

2005-10-30 Thread Stephen Souness
ersions, but suspect that the numbers in the "BUG REPORTS ADDRESSED" section may not match up with the Bugzilla bug numbers (given that this bug number is about 10,000 values above those mentioned in the latest version's re

logic:iterate and bean:write not showing when jstl c:out does

2005-10-27 Thread Stephen Souness
Hi all, I am using Struts 1.2.7, under Tomcat 5.0.25. I have a JSP within my struts application which I ultimately want to have output some checkboxes (using ). Other areas of my application use LabelValueBean with and just fine. However, this particular area of my application has a few

url validation

2005-09-21 Thread Stephen Souness
Can anyone point me to an explanation of how the url validation should work? I'm using struts 1.2.7, have url validation enabled for some fields and they are consistently being rejected. I just want to be able to have a consistent check on websites that are being entered into the form, so tha

Re: AW: AW: Problem with characters

2005-09-07 Thread Stephen Souness
Hi all, I had a similar problem with Tomcat 5.0.24 a year or so ago and came up with a different solution. On Windows it was using a default charset which was quite limited. To force it to use something more useful I added: -Dfile.encoding=ISO-8859-1 to Tomcat's startup java options. To g

nested loops with jstl

2005-03-05 Thread Stephen Souness
Hi all, I have a basic survey creation form which is backed by three levels of form bean - survey -> questions -> answerOptions. Using the following JSTL gets me this exception: javax.servlet.jsp.el.ELException: Unable to find a value for "answerOptions" in object of class "java.util.HashMap$Ent

Re: html:form action getting altered after validation

2005-01-27 Thread Stephen Souness
Did a little more digging around and found a bugzilla entry - fixed in 1.2.6 (beta) http://issues.apache.org/bugzilla/show_bug.cgi?id=32283 -- Stephen Kishore Senji wrote: On Fri, 28 Jan 2005 13:22:32 +1300, Stephen Souness <[EMAIL PROTECTED]> wrote: Hi all, I have a fairly simple form l

html:form action getting altered after validation

2005-01-27 Thread Stephen Souness
Hi all, I have a fairly simple form like so: When the input fails validation and the user is sent back to the form the action is changed to "//someProcess.do" - is this familiar to anyone? What am I missing? This is with struts 1.2.4 -- Stephen -