That's great news. I've opened: https://issues.apache.org/jira/browse/WW-5331

Wyatt

-----Original Message-----
From: Lukasz Lenart <lukaszlen...@apache.org> 
Sent: Wednesday, August 16, 2023 6:09 AM
To: Struts Users Mailing List <user@struts.apache.org>
Subject: Re: Set tag not working in 6.2.0

pon., 14 sie 2023 o 19:52 Tellis, Wyatt
<wyatt.tel...@ucsf.edu.invalid> napisał(a):
> Any luck with tracking the cause?

Yeah, I finally found the core issue, it's related to
https://urldefense.com/v3/__https://issues.apache.org/jira/browse/WW-5196__;!!LQC6Cpwp!oJarOfFVy8gW-_jG0qSP13APZ9rvZeUtjI4HJIpl1KjRCQwKyhn-1OCi3_pQFer2HmT5c189FxvOeNQ-gr1S7ukhKxc$
 

Basically instead of using:

public Object get(final String key) {
    return request.getAttribute(key);
}

I just have to use a proper signature which is:

public Object get(final Object key) {
    return request.getAttribute(key.toString());
}

Would you mind opening a ticket in our JIRA?
https://urldefense.com/v3/__https://issues.apache.org/jira/projects/WW/issues/__;!!LQC6Cpwp!oJarOfFVy8gW-_jG0qSP13APZ9rvZeUtjI4HJIpl1KjRCQwKyhn-1OCi3_pQFer2HmT5c189FxvOeNQ-gr1SYaY0UDw$
 


Kind regards
-- 
Łukasz
+ 48 606 323 122 
https://urldefense.com/v3/__http://www.lenart.org.pl/__;!!LQC6Cpwp!oJarOfFVy8gW-_jG0qSP13APZ9rvZeUtjI4HJIpl1KjRCQwKyhn-1OCi3_pQFer2HmT5c189FxvOeNQ-gr1SDOVumKI$
 

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to