Re: S2 Action Setter Not Called

2011-02-04 Thread li wei
the problem is that you pushed a HashMap on the ValueStack's root. if you do that, all the values will be populated to the HashMap, not your action class you can try this code to fix it. ActionContext.getContext().put(browser, userSession.getBrowser()); (2011/02/04 17:12), Rubens Gomes

Re: Problem with character encoding during redirect to another action

2011-01-26 Thread li wei
I think this is not a struts issue. are you using tomcat as your server? you can try to set URIEncoding of Connector to utf-8 in server.xml (2011/01/26 23:45), Rafael Karbowski wrote: Hi @ all, I have a problem with the encoding of German umlauts. In the getter of the source action they

Re: problem mapping values from the jsp to the action

2010-12-27 Thread li wei
can you show the generated html file? - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: submit date in textfield with custom date format

2010-12-06 Thread li wei
what is your locale associated with the request? if your locale's date format is defferent from -MM-dd , you have to customize the type conversion to make it work. http://struts.apache.org/2.2.1/docs/type-conversion.html -

Re: Interceptor Stack config

2010-11-18 Thread li wei
Hi RogerV I don't think config-browser plugin tells you which stack are you using, it just show you all of actions in namespaces you have configured, of course, including default namespace (2010/11/18 18:18), RogerV wrote: Hi I'm setting up a new Struts 2 project - the first time I've started