Logging Exceptions to files

2011-01-26 Thread Edward Seager
Hi, I'm having trouble getting exception logging written to files in Struts 2.2.1. I have enabled the Exception interceptor to log exceptions by adding the following to the interceptor stack: interceptor-ref name=defaultStack param name=exception.logEnabledtrue/param

Problem with character encoding during redirect to another action

2011-01-26 Thread Rafael Karbowski
Hi @ all, I have a problem with the encoding of German umlauts. In the getter of the source action they are correct, but the setter of the destination action sets bad encoded values. So far I canĀ“t find any solution for this problem. It would be nice, if somebody has an idea how to fix it.

Re: Struts2 jQuery Plugin Issue on Websphere 6.1

2011-01-26 Thread satyanarayana katta
My bad. Realized it's not an issue with showcase example but with convention plugin on websphere 6.1. Sent from my iPhone On Jan 25, 2011, at 7:51 PM, satyanarayana katta saty.pra...@gmail.com wrote: Hi, I was trying the Struts2 jQuery Plugin(struts2-jquery-showcase-2.5.1) showcase

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: Struts 2 - Parameterized error messages

2011-01-26 Thread kamlesh sharma
Thanks you very much it's works for me. Chris Pratt wrote: Try: field.amount={0} can not be '$'{1} for Sequence {2}. The single quotes tell the underlying MessageFormat that the dollar sign should be treated literally. You might also be able to use {1,number,currency} which I think