RE: XML encoding

2004-04-01 Thread Hiroshi Okugawa
UTF-8 encoding can handle accents characters too. Anyway, You can change encoding value by just using replace function. like this. repleace(tostring(generatedxmldoc), 'encoding=UTF-8', 'encoding=ISO-8859-1') And, how will you use generated xml document? If you want to write it to file, you

RE: CF+MySQL+Apache french characters not properly displayed.

2003-11-10 Thread Hiroshi Okugawa
Yves, You should add the following line into MySQL 'Connection String' of advanced setting. useUnicode=truecharacterEncoding=iso-8859-1 Then, So I'm forcing CFMX to use iso-8859-1. It's not required. Thanks, -- Hiroshi -Original Message- From: Yves Arsenault [mailto:[EMAIL

RE: cfexecute on unix

2003-11-04 Thread Hiroshi Okugawa
Unfortunately cfexecute doesn't work correctly with argument which contains spaces. (bugid 50604) # It's Linux/Unix only. I think you may create custom java cfx for workaround. # use Runtime.getRuntime().exec(String []) instead of Runtime.getRuntime().exec(String) sorry for inconvenience.