Re: allowed-methods tag not working

2024-02-08 Thread Lukasz Lenart
czw., 8 lut 2024 o 16:39 apacheStrutsUsers8 napisał(a): > > I have a Struts app which I am upgrading from Struts 2.5 to Struts 6. In my > struts xml file, I currently have actions which have the allowed-methods tag > like this: > > > /done.jsp > start, finish, next > > > However, when I try to

allowed-methods tag not working

2024-02-08 Thread apacheStrutsUsers8
I have a Struts app which I am upgrading from Struts 2.5 to Struts 6. In my struts xml file, I currently have actions which have the allowed-methods tag like this: /done.jsp start, finish, next However, when I try to call someAction!start.action, the start method is not called and it looks f

RE: Set tag not working in 6.2.0

2023-08-16 Thread Tellis, Wyatt
That's great news. I've opened: https://issues.apache.org/jira/browse/WW-5331 Wyatt -Original Message- From: Lukasz Lenart Sent: Wednesday, August 16, 2023 6:09 AM To: Struts Users Mailing List Subject: Re: Set tag not working in 6.2.0 pon., 14 sie 2023 o 19:52 Tellis, Wyat

Re: Set tag not working in 6.2.0

2023-08-16 Thread Lukasz Lenart
pon., 14 sie 2023 o 19:52 Tellis, Wyatt napisał(a): > Any luck with tracking the cause? Yeah, I finally found the core issue, it's related to https://issues.apache.org/jira/browse/WW-5196 Basically instead of using: public Object get(final String key) { return request.getAttribute(key); }

RE: Set tag not working in 6.2.0

2023-08-14 Thread Tellis, Wyatt
Hi, Any luck with tracking the cause? Wyatt -Original Message- From: Lukasz Lenart Sent: Wednesday, August 2, 2023 11:00 PM To: Struts Users Mailing List Subject: Re: Set tag not working in 6.2.0 Interesting, what's even more interesting this

Re: Set tag not working in 6.2.0

2023-08-02 Thread Lukasz Lenart
; On 6.1.2.1 you get: > > Set attempt #1: success > Set attempt #2: success > > > But on 6.2.0 you only get: > > Set attempt #1: success > Set attempt #2: > > > > Note: the call to returns nothing in > 6.2.0 > > Wyatt > > > -Origina

RE: Set tag not working in 6.2.0

2023-08-02 Thread Tellis, Wyatt
s But on 6.2.0 you only get: Set attempt #1: success Set attempt #2: Note: the call to returns nothing in 6.2.0 Wyatt -Original Message- From: Lukasz Lenart Sent: Saturday, July 29, 2023 10:48 AM To: Struts Users Mailing List Subject: Re: Set tag not working in 6.2.0 sob.,

Re: Set tag not working in 6.2.0

2023-07-29 Thread Lukasz Lenart
sob., 29 lip 2023 o 15:38 Tellis, Wyatt napisał(a): > > No, its just the standard JSTL Core set tag: Just tested the following setup and it just works with Struts 6.2.0 and Java 8/11/17 ${listType} / ${lcType} Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ -

RE: Set tag not working in 6.2.0

2023-07-29 Thread Tellis, Wyatt
No, its just the standard JSTL Core set tag: https://www.w3schools.in/jsp/jstl-core-set-tag Wyatt -Original Message- From: Lukasz Lenart Sent: Friday, July 28, 2023 10:26 PM To: Struts Users Mailing List Subject: Re: Set tag not working in 6.2.0 sob., 29 lip 2023 o 02:32 Tellis

Re: Set tag not working in 6.2.0

2023-07-28 Thread Lukasz Lenart
sob., 29 lip 2023 o 02:32 Tellis, Wyatt napisał(a): > > Because "#request." is about accessing Request attributes > > not parameters. > > Understood, but we're using value="requestAttributeValue" scope="request"/> to update the request > attributes Is this your custom function? Could you share

RE: Set tag not working in 6.2.0

2023-07-28 Thread Tellis, Wyatt
2023 11:50 AM To: Struts Users Mailing List Subject: Re: Set tag not working in 6.2.0 In which version this worked for you? Because "#request." is about accessing Request attributes not parameters. Regards -- Łukasz + 48 606 323 122 https://urldefense.com/v3/__http:/

Re: Set tag not working in 6.2.0

2023-07-27 Thread Lukasz Lenart
In which version this worked for you? Because "#request." is about accessing Request attributes not parameters. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ - To unsubscribe, e-mail: user-unsubscr...@struts.apac

Re: Set tag not working in 6.2.0

2023-07-21 Thread Lukasz Lenart
czw., 20 lip 2023 o 18:28 Tellis, Wyatt napisał(a): > > It doesn't work. Also I was debugging the set tag and noticed the RequestMap > in the ValueStack that gets passed to the set tag doesn't even contain the > listType attribute. This is different behavior from the previous versions of > St

RE: Set tag not working in 6.2.0

2023-07-20 Thread Tellis, Wyatt
asz Lenart Sent: Thursday, July 20, 2023 12:11 AM To: user@struts.apache.org Subject: Re: Set tag not working in 6.2.0 śr., 19 lip 2023 o 20:59 Tellis, Wyatt napisał(a): > We noticed the following snippet of code no longer works in 6.2.0: > > <%@taglib > uri="https://urldefens

Re: Set tag not working in 6.2.0

2023-07-20 Thread Lukasz Lenart
śr., 19 lip 2023 o 20:59 Tellis, Wyatt napisał(a): > We noticed the following snippet of code no longer works in 6.2.0: > > <%@taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> > <%@taglib uri="/struts-tags" prefix="s"%> > > > Could you try to use to access this value? Regards --

Set tag not working in 6.2.0

2023-07-19 Thread Tellis, Wyatt
Hi, We noticed the following snippet of code no longer works in 6.2.0: <%@taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> <%@taglib uri="/struts-tags" prefix="s"%> ${listType} / ${lcType} In the previous version of Struts we would get: TEST / test but with 6.2.0 we get: TES

Re: [Struts 2.1.8] Message properties on SUBMIT tag not working

2009-11-30 Thread Saeed Iqbal
Struts i8ln does not work with simple theme use fmt tag instead On Tuesday, December 1, 2009, David Canos wrote: > hi guys > > 15th of May in this list someone write: > theres something like this on bug-tracking? > > We are suffering a very strange behavior of the submit tag in a theme=simple >>

Re: [Struts 2.1.8] Message properties on SUBMIT tag not working

2009-11-30 Thread David Canos
hi guys 15th of May in this list someone write: theres something like this on bug-tracking? We are suffering a very strange behavior of the submit tag in a theme=simple > form. I'm using Struts 2.0.12 with i18n done following [1]. > this s:submit give us empty value > if you replace code b

Re: [Struts 2.1.8] Message properties on SUBMIT tag not working

2009-11-29 Thread Denis Cabasson
You should use key to change the text outputted on the screen. You should use name as well to avoid the error you are seeing: the name is being used as the property to set on your action. This error is actually a warning, that is not preventing anything from working fine in your application. I

[Struts 2.1.8] Message properties on SUBMIT tag not working

2009-11-29 Thread Celinio Fernandes
Hi, I have a message properties file in my web application. I use it for many tags such as textfield, text ... For instance : It works well except with the SUBMIT tag :     I get this error, whether i use name or key : 20:33:21,198 INFO  [BeanSelectionProvider] Loading global messages from me

and tag not working in IE

2009-11-12 Thread Rupesh Mankar
Hi all, I am new to struts2. I am using struts2's and for generation of tree components. It works fine in Mozilla firefox. But when I open same URL in Internet explorer and clicks on any tree node it throws javascript error: Message: Unspecified error. Line: 3546 Char: 1 Code: 0 URI: http://

[S2] - Strange error: "" tag not working for ""

2007-03-23 Thread Monttez
Hi! The url tag: <@s2.url id="urlMenu" namespace="/Menu" action="getTreeMenu"> <@s2.param name="decorate" value="false" /> This tag works properly for a link.. as follows: test Result: "http://localhost:8088/WebStageCMS_v2/Menu/getTreeMenu.action?decorate=false " But the same tag do

Re: Tag Not Working

2006-10-10 Thread Antonio Petrelli
Chetan Pandey ha scritto: <%=session.getAttribute("NoCourseChosen") %> Hehe! This is not null but "null", I mean the string containing "null", because you put an HTML value (that is a string). You should use: HTH Antonio P.S.: Saying that "something in Struts does not work" is con

Tag Not Working

2006-10-09 Thread Chetan Pandey
Hi All: I have defined a Variable using Tag that is printed in the next Line using a Logic:notEmpty check. But the problem is that it will print anyhow whether it is empty or Not. And the resulting print of "null" in the JSP is unacceptable. Here is my Definition <%=session.getAttri

c:forEach tag not working properly

2005-04-13 Thread Axel Sachmann
Hi, i have still a problem with the c:forEach tag in a Jsp. In a DynaValidatorForm i set an array of Objects as an element of form-property "artikel" with the action "de.zakps.action.generiereArtikelform". That works fine. The Iteration of the array with the c:forEach tag works very good. But the