Re: problem encoding using SendMailTransformer

2010-10-08 Thread mvalencia
map:parameter name=cuerpo value={request-param:id_cuerpo} / can be the problematic part, since you take the value from the request. I can remember we applied the tips http://cocoon.apache.org/2.2/1366_1_1.html once in one of the apps. AFAIR there should be the SetCharacterEncodingFilter in your

Re: problem encoding using SendMailTransformer

2010-10-08 Thread Andre Juffer
On 10/08/2010 02:36 PM, mvalencia wrote: map:parameter name=cuerpo value={request-param:id_cuerpo} / can be the problematic part, since you take the value from the request. I can remember we applied the tips http://cocoon.apache.org/2.2/1366_1_1.html once in one of the apps. AFAIR there should

Re: problem encoding using SendMailTransformer

2010-10-08 Thread mvalencia
Hi Andre I load file with HTTP header of web page to send email: http://old.nabble.com/file/p29914700/HTTP_header_Email-send.txt HTTP_header_Email-send.txt I see that Accept-Charset parameter contains UTF-8 and in query-string data are codified right. Besides I check encoding browser is UTF-8.

Re: problem encoding using SendMailTransformer

2010-10-08 Thread Charles Yates
Hello, I think you need to set URIencoding in your tomcat connector: http://tomcat.apache.org/tomcat-6.0-doc/config/http.html#Common_Attributes |URIEncoding| This specifies the character encoding used to decode the URI bytes, after %xx decoding the URL. If not specified, ISO-8859-1 will be

Re: problem encoding using SendMailTransformer

2010-10-08 Thread Thorsten Scherler
On Fri, 2010-10-08 at 04:36 -0700, mvalencia wrote: map:parameter name=cuerpo value={request-param:id_cuerpo} / can be the problematic part, since you take the value from the request. I can remember we applied the tips http://cocoon.apache.org/2.2/1366_1_1.html once in one of the apps.