Re: [t5] decoding utf-8 in form submissions

2007-10-24 Thread Lauri Benno
Thanks a lot. I'll give it a try. Lauri Nick Westgate wrote: > > There is an issue tracking this problem, and Dan Gredler is assigned to > it: > https://issues.apache.org/jira/browse/TAPESTRY-1723 > > In the meantime, if you really needed to you could try applying the patch > from the issue t

Re: [t5] decoding utf-8 in form submissions

2007-10-24 Thread Nick Westgate
There is an issue tracking this problem, and Dan Gredler is assigned to it: https://issues.apache.org/jira/browse/TAPESTRY-1723 In the meantime, if you really needed to you could try applying the patch from the issue to a local build of T5. Cheers, Nick. Lauri Benno wrote: As a remark, I'd li

Re: [t5] decoding utf-8 in form submissions

2007-10-24 Thread Ken
Thanks a lot ! I found there is no j2ee in my environment, oops. I installed it then everythig OK ! Ken Nick Westgate wrote: Look at the Tapestry console output for exception logging. The changes you have made are not necessary. --

Re: [t5] decoding utf-8 in form submissions

2007-10-24 Thread Lauri Benno
As a remark, I'd like to mention, that removing upload component from form resolved the decoding issues. But I still have the question: is it somehow possible to have a form with upload components and working UTF-8 decoding? Lauri Nick Westgate wrote: > > Look at the Tapestry console output f

Re: [t5] decoding utf-8 in form submissions

2007-10-24 Thread Nick Westgate
Look at the Tapestry console output for exception logging. The changes you have made are not necessary. Cheers, Nick. Ken wrote: Hi, I copied 'buildUtf8Filter' method from the URL below (in citation) and add: configuration.add("Utf8Filter", utf8Filter); in my AppModule. Then I got: H

Re: [t5] decoding utf-8 in form submissions

2007-10-23 Thread Ken
Hi, I am using Tapestry 5.0.5. Thanks. Ken Hi, I copied 'buildUtf8Filter' method from the URL below (in citation) and add: configuration.add("Utf8Filter", utf8Filter); in my AppModule. Then I got: HTTP ERROR: 500 Internal Server Error RequestURI=/sample/ Powered by Jetty://

Re: [t5] decoding utf-8 in form submissions

2007-10-23 Thread Ken
Hi, I copied 'buildUtf8Filter' method from the URL below (in citation) and add: configuration.add("Utf8Filter", utf8Filter); in my AppModule. Then I got: HTTP ERROR: 500 Internal Server Error RequestURI=/sample/ Powered by Jetty:// What am I wrong? I have some concern. 1. in

Re: [t5] decoding utf-8 in form submissions

2007-10-21 Thread Lauri Benno
Actually I am using upload on the same form. Is there a way to get UTF-8 working on a form with upload or should I divide textual data and file upload to two separate pages? I have verified that contributeRequestHandler() is not the problem. Lauri Nick Westgate wrote: > > If you are using fil

Re: [t5] decoding utf-8 in form submissions

2007-10-21 Thread Nick Westgate
If you are using file upload there may be an incompatibility. Otherwise, are you sure you added this line to contributeRequestHandler()? configuration.add("Utf8Filter", utf8Filter); // handle UTF-8 Cheers, Nick. Lauri Benno wrote: Hi, I'm totally lost on this. I'm using UTF-8 on my applic