Hello,

In a page I need to get a param in the querystring encoded with UTF-8
- Tomcat is configured to accept UTF-8 in the URI with this argument
in the default connector : URIEncoding="UTF-8"
- Java is started with -Dfile.encoding=UTF-8
- The default charset in bluedragon.xml is set to UTF-8 . I use the
latest version.

My querystring :
mypage.cfm?tagName=Evénement

And in my page :
<cfprocessingdirective pageencoding="UTF-8" />
<cfcontent type="text/html; charset=UTF-8" />

<cfoutput>#URLDecode(url.tagName,"UTF-8")#</cfoutput>

Problem : the value returned is always 'Evénement' and not
'Evénement".
I've tested also with a jsp page on the same tomcat container and with
cfmx on a jrun instance, and the correct value is returned.

After investigations, it seems to me that it's a problem with the
cfcontent tag, the charset specified has no effect on the page
processed.

I've just add a new issue in the bug tracker
http://code.google.com/p/openbluedragon/issues/detail?id=66

--~--~---------~--~----~------------~-------~--~----~
Open BlueDragon Public Mailing List
 http://groups.google.com/group/openbd?hl=en
 official blog @ http://blog.openbluedragon.org/
!! save a network - trim replies before posting !!
-~----------~----~----~----~------~----~------~--~---

Reply via email to