Namespace URL confusion

2014-05-24 Thread Matt Williams
Hello, I have been using struts 2.1.8 for a while and last night noticed an issue with mapping actions working with any url. For instance in the struts.xml file: - I have a package with a namespace of "/employee". - Within the package, I have an action mapping "search" - The webapp name is "Test

Struts2 namespace confusion

2014-05-24 Thread Matt Williams
Hello, I have been using struts 2.1.8 for a while and last night noticed an issue with mapping actions working with any url. For instance in the struts.xml file: - I have a package with a namespace of "/employee". - Within the package, I have an action mapping "search" - The webapp name is "TestW

Re: Struts2 namespace confusion

2014-05-24 Thread Matt Williams
your including so potentially someone else can try using the exact same jars. John On 24 May 2014 15:28, Matt Williams wrote: > Hello, > I have been using struts 2.1.8 for a while and last night noticed an issue > with mapping actions working with any url. > > For instance in the st

Re: Struts2 namespace confusion

2014-05-24 Thread Matt Williams
for others to include what >> specific maven dependencies your including so potentially someone else can >> try using the exact same jars. >> >> John >> >> >> >> On 24 May 2014 15:28, Matt Williams wrote: >> >> > Hello, >> > I h

Re: Struts2 namespace confusion

2014-05-25 Thread Matt Williams
n Sat, May 24, 2014 at 2:50 PM, Lukasz Lenart wrote: > Can you share your struts.xml file? > > Maybe you have defined default-action-ref or wildcard mapping? > > 2014-05-24 18:58 GMT+02:00 Matt Williams : > > > > > > No, there are no other

Re: Struts2 namespace confusion

2014-05-28 Thread Matt Williams
fault-action-ref or wildcard mapping? >> >> 2014-05-24 18:58 GMT+02:00 Matt Williams : >> > >> > >> > No, there are no other 'search' actions defined anywhere else. >> > >> > >> > >> > --

Struts2 iterator twice for select tag

2014-06-03 Thread Matt Williams
I am using struts 2.1.8.  I am extending the "org.apache.struts2.components.Select" tag and writing my own "select.ftl" (freemarker template). I need to iterate over the parameter "parameters.list" twice.  Example: <@s.iterator value="parameters.list">    loop1 <@s.iterator value="parame

Re: Struts2 iterator twice for select tag

2014-06-04 Thread Matt Williams
));     }     }     if (value instanceof Collection) {     addParameter("listCopy", value);     } else {     addParameter("listCopy", MakeIterator.convert(value));     } }   Matt   On Wednesday, June 4, 2014 2:45 AM, Lukasz Lenart wrote: 2014-06-03 19:17 GMT+02:00 Matt Willia

Struts 6 dtd

2022-07-14 Thread Matt Williams
When upgrading to Struts 6.0.0, are we supposed to use/reference the struts-6.0.dtd?  I get WARN logs that the DTD is missing. Thanks! Matt W. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands

Textarea maxlength issue Struts 6.0.0

2022-07-21 Thread Matt Williams
For Struts 6.0.0: The freemarker template for the s:textarea tag is wrong when using 'maxlength' attribute.  It puts the value inside the text area.   Matt

Re: Struts 6 dtd

2022-07-21 Thread Matt Williams
Thanks Łukasz. The struts2-core-6.0.0.jar that I downloaded does not have the struts-6.0.dtd in it.   It has struts-2.6.dtd Maybe it will be in the next release. Matt On Thursday, July 14, 2022 at 11:13:37 AM CDT, Lukasz Lenart wrote: czw., 14 lip 2022 o 17:52 Matt Williams napisał

Re: URL tag question

2024-10-30 Thread Matt Williams
, but instead put them all into an Array or Iterable object and add that as the value for a single param child tag. Regards, Nate -Original Message- From: Matt Williams Sent: Wednesday, 30 October 2024 15:52 To: user@struts.apache.org Subject: URL tag question I am using Struts 6.6

URL tag question

2024-10-30 Thread Matt Williams
I am using Struts 6.6.0, I am needing to generate a URL using the s:url tag that will pass a List of values (example:  myurl.action?myData=1&myData=2&myData=3) I have:     1     2     3 However, the generated URL only includes myData=3. Am I missing something? Thanks! Matt