I am using XMLFormat() to encode some text for an XML document. However, when I go to read the XML file I created I get an invalid character error. Why does XMLFormat() not properly encode all characters?
I'm running CF8.
|
|
I am using XMLFormat() to encode some text for an XML document. However, when I go to read the XML file I created I get an invalid character error. Why does XMLFormat() not properly encode all characters? I'm running CF8.
|
||||||
|
|
|
Are you sure to output the file in the right encoding? You can't just do
as the result very likely diverges from the character set your XML is in. Unless otherwise noted (by an encoding declaration), XML files are treated as UTF-8, and you should do:
|
||||||
|
|
|
I feel that this is a bug in XMLFormat. I am not sure who the original author of the snippet below is but here is an approach to catch the extra characters via regex...
|
||
|
|
|
|
Do not forget also to put <cfprocessingdirective pageencoding="utf-8"> on top of your template. |
||||
|
|
|
if your trying to return your XML directly to the browser, you might want to try something like for the user to download it
or, if you want it returned as a webpage (ala REST) then this should do the trick
hope that helps |
||
|
|
|
|
Unfortunately, You'll need to do custom encoding of characters that are invalid for XML but not covered by It's definitely not very efficient, but a potential solution would be to loop over the content of typically-suspect fields (anything user-generated, for starters) character-by-character, checking the ascii code, and if it's above 255, either omit the character or properly encode it. |
||
|