Special Characters in XML - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:18:46Z http://stackoverflow.com/feeds/question/209193 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/209193/special-characters-in-xml 5 Special Characters in XML BillZ 2008-10-16T15:58:54Z 2008-12-31T22:12:44Z <p>I am creating a left navigation system utilizing xml and xsl. Everything was been going great until I tried to use a special character in my xml document. I am using &raquo; and I get th error.</p> <p>reason: Reference to undefined entity 'raquo'. error code: -1072898046</p> <p>How do I make this work?</p> <p>Thanks</p> http://stackoverflow.com/questions/209193/special-characters-in-xml/209214#209214 0 Answer by Zxaos for Special Characters in XML Zxaos 2008-10-16T16:02:49Z 2008-10-16T16:02:49Z <p>Are you using the » symbol directly or are you defining it as &amp;raquo; ? If you're using the escaped symbol, did you forget the semicolon?</p> http://stackoverflow.com/questions/209193/special-characters-in-xml/209272#209272 0 Answer by Pat for Special Characters in XML Pat 2008-10-16T16:14:49Z 2008-10-16T16:14:49Z <p>did you specify a doc type for your file ?</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; </code></pre> <p>I think you might get such errors if you forget to specify it.</p> <p>Also sometimes the entities work if you specify them by number instead of name.</p> <pre><code>&amp;#187; &amp;#171; instead of &amp;raquo; and &amp;laquo; </code></pre> http://stackoverflow.com/questions/209193/special-characters-in-xml/209294#209294 10 Answer by Joe Lencioni for Special Characters in XML Joe Lencioni 2008-10-16T16:19:54Z 2008-10-16T20:46:41Z <p>You are trying to use an <a href="http://en.wikipedia.org/wiki/SGML_entity" rel="nofollow">HTML entity</a> in a non-HTML or non-XHTML document. These entities are declared in the document's <a href="http://en.wikipedia.org/wiki/Document_Type_Definition" rel="nofollow">Document Type Definition (DTD)</a>.</p> <p>You should use the numerical Unicode version of the <a href="http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references" rel="nofollow">entity reference</a>. For example, in the case of <code>&amp;raquo;</code> you should use <code>&amp;#187;</code></p> <p>Alternatively, you can <a href="http://www.w3schools.com/dtd/dtd_entities.asp" rel="nofollow">define them in your XML document's DTD</a>:</p> <pre><code>&lt;!ENTITY entity-name "entity-value"&gt; &lt;!ENTITY raquo "&amp;#187;"&gt; </code></pre> <p>Otherwise, if your document is UTF-8, I believe you can just use the actual character directly in your XML document.</p> <pre><code>» </code></pre> http://stackoverflow.com/questions/209193/special-characters-in-xml/209300#209300 1 Answer by Rontologist for Special Characters in XML Rontologist 2008-10-16T16:21:34Z 2008-10-16T16:21:34Z <p>This is an issue because not all HTML entities are XML entity. You can import the DTD of HTML into your document as Pat suggested, or do one of the following:</p> <p>Replace all the occurances of the special character with the numeric entity code:</p> <pre><code>&amp;raquo; becomes &amp;#187; </code></pre> <p>Wrap all occurances of the special characters in a CDATA Tag</p> <pre><code>&lt;![CDATA[&amp;raquo;]]&gt; </code></pre> <p>Define entitys at the top of your document</p> <pre><code>&lt;!DOCTYPE ROOT_XML_ELEMENT [ &lt;!ENTITY raquo "&amp;#187;"&gt; ]&gt; </code></pre> http://stackoverflow.com/questions/209193/special-characters-in-xml/209540#209540 0 Answer by BillZ for Special Characters in XML BillZ 2008-10-16T17:35:02Z 2008-10-16T17:35:02Z <p>Joe</p> <p>When I use the unicode version shows a square. </p> <p>Putting the entity decalration into the xml doc produces a "Cannot have a DTD declaration outside of a DTD." error. I suppose this is expected.</p> <p>When I use '' to include the dtd externally it doesn't seem to have any effect. </p> <p>I am wondering if this is maybe a server issue. I am developing this locally and using Baby Web Server.</p> http://stackoverflow.com/questions/209193/special-characters-in-xml/210035#210035 0 Answer by Robert Rossney for Special Characters in XML Robert Rossney 2008-10-16T19:56:17Z 2008-10-16T19:56:17Z <p>You don't need to declare an entity in your DTD, or even <em>use</em> a DTD. You probably don't need to use the Unicode representation of the character. You <em>certainly</em> don't need to use a CDATA section.</p> <p>What you need to do is use a DOM to build your XML instead of trying to build it with string manipulation. The DOM will fix this problem for you.</p> <p>In C#, this code:</p> <pre><code> XmlDocument d = new XmlDocument(); d.LoadXml("&lt;foo/&gt;"); char c = (char)187; d.DocumentElement.InnerText = "Here's that character: " + c; Debug.WriteLine(d.OuterXml); d.DocumentElement.InnerText = "Here it is as an HTML entity: &amp;raquo;"; Debug.WriteLine(d.OuterXml); </code></pre> <p>produces this output:</p> <pre><code>&lt;foo&gt;Here's that character: »&lt;/foo&gt; &lt;foo&gt;Here it is as an HTML entity: &amp;amp;raquo;&lt;/foo&gt; </code></pre> <p>As you can see from the first example, the &raquo; character is perfectly legal in XML text. But I don't think you're trying to represent that character.</p> <p>I think you're trying to do what's in the second example, based on the error message that you reported. You're trying to represent the string of characters <code>&amp;raquo;</code>. The proper way to represent that string of characters in XML text is by escaping the ampersand; thus: <code>&amp;amp;raquo;</code>.</p> <p>So if you <em>must</em> use string manipulation to build your XML, just make sure that you escape any ampersands in your source data. Not to belabor the point, but if you were using a DOM, this would have been done for you automatically.</p> <p>One other thing. It's quite likely that in your original question, which now reads "I am using »", what you actually <em>typed</em> is "I am using &amp;raquo;". The actual post doesn't look like that, though. If you need to represent text literally in markdown, enclose it in backticks; otherwise, HTML entities will get converted to their character representation when the post is rendered.</p> http://stackoverflow.com/questions/209193/special-characters-in-xml/212511#212511 0 Answer by Ben Bryant for Special Characters in XML Ben Bryant 2008-10-17T14:56:09Z 2008-10-17T14:56:09Z <p>simply replace your HTML entity <code>&amp;raquo;</code> with the numeric reference <code>&amp;#187;</code> which is good in any XML and HTML.</p> http://stackoverflow.com/questions/209193/special-characters-in-xml/241477#241477 0 Answer by Martin Kool for Special Characters in XML Martin Kool 2008-10-27T21:37:50Z 2008-10-27T21:37:50Z <p>I found myself googling for such info a lot, so decided to post a matrix on my own site for the simple purpose of quickly being able to do a lookup:</p> <p><a href="http://martinkool.com/characters" rel="nofollow">http://martinkool.com/characters</a></p> <p>Use the &amp;#...; form indeed.</p>