CFFORM XML character entity references

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CFFORM XML character entity references

    I am trying to encode special characters into my cfform with an xml output. &
    characters are not being encoded, they are being escaped.

    Example:- ŷ is being sent as seen, not the character it is supposed to
    represent. it is wrapped within a cfformitem with a type of html (tried text
    as well, no difference), the page is saved as utf-8 and a cfprocessingdirective
    is being uses to set utf-8 as well.

    Any ideas?

    HairyDude Guest

  2. Similar Questions and Discussions

    1. #40105 [NEW]: DOMDocument->createElement() unescapes numeric character references in values
      From: fletch at pobox dot com Operating system: linux PHP version: 5.2.0 PHP Bug Type: DOM XML related Bug description: ...
    2. #25427 [Fbk->NoF]: XML-parser fails when entity &#XX; encountered ( XX is a code of character )
      ID: 25427 Updated by: sniper@php.net Reported By: sad at spider dot ru -Status: Feedback +Status: No...
    3. #25427 [Opn->Fbk]: XML-parser fails when entity &#XX; encountered ( XX is a code of character )
      ID: 25427 Updated by: derick@php.net Reported By: sad at spider dot ru -Status: Open +Status: ...
    4. #25427 [Fbk->Opn]: XML-parser fails when entity &#XX; encountered ( XX is a code of character )
      ID: 25427 User updated by: sad at spider dot ru Reported By: sad at spider dot ru -Status: Feedback +Status: ...
    5. #25427 [NEW]: XML-parser fails when entity &#XX; encountered ( XX is a code of character )
      From: sad at spider dot ru Operating system: linux gentoo PHP version: 4.3.3 PHP Bug Type: *XML functions Bug description: ...
  3. #2

    Default Re: CFFORM XML character entity references

    if you're using unicode, why bother with that kind of encoding? why not just insert the correct unicode char?

    PaulH Guest

  4. #3

    Default Re: CFFORM XML character entity references

    I suppose I am used to using them. but I have been embedding the characters
    directly into the file and this seems to work - I still have problems with
    unsupported characters (y and w circumflex for example), but a and o circumflex
    seem to be okay using this feature.

    HairyDude Guest

  5. #4

    Default Re: CFFORM XML character entity references

    if you're saying that some chars encoded like that alway work while other
    always don't work, that might be a bug. i'll have a look--but i wouldn't
    suggest using this type of encoding.

    btw there was a just a big argument about using html entities, etc in unicode
    xml streams on the unicode mailing list.

    PaulH Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139