<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Illegal xml character in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862823#M671368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;"ü" is a UTF-8 Character...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you generating the file?&lt;/P&gt;&lt;P&gt;Important is to save the file with the same byte format written in the &amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt; line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use ABAP ensure that the encoding output is the right one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OPEN DATASET dsn IN TEXT MODE FOR OUTPUT ENCODING UTF-8&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use a editor ensure that you use the right encoding at the saving time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gianpietro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2007 13:17:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-28T13:17:36Z</dc:date>
    <item>
      <title>Illegal xml character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862820#M671365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a xml and I need to write the character &amp;#145;ü&amp;#146;, but a message with the error &amp;#145;Illegal xml character&amp;#146; is shown when I try open my file xml with the Microsoft Office Word.&lt;/P&gt;&lt;P&gt;I have tried to use the character special for xml/html, in my case I have used &amp;#145;ü&amp;#146;, but a message with the error &amp;#145;Undeclared Entity&amp;#146; is shown in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can solve it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 12:19:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862820#M671365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T12:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Illegal xml character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862821#M671366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i think the problem is the codepage of the XML document.&lt;/P&gt;&lt;P&gt;I think the validation of the document fails because the 'ü' is not contained in the charset of the specified Codepage.&lt;/P&gt;&lt;P&gt;The codepage specification ist done in the XML document line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="&amp;lt;yourCharset"?&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gianpietro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 12:33:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862821#M671366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T12:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Illegal xml character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862822#M671367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have the following line:&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/P&gt;&lt;P&gt;I cannot change it. I have to use UTF-8.&lt;/P&gt;&lt;P&gt;Is it possible to solve my problem without change the encoding parameter?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 12:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862822#M671367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T12:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Illegal xml character</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862823#M671368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;"ü" is a UTF-8 Character...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you generating the file?&lt;/P&gt;&lt;P&gt;Important is to save the file with the same byte format written in the &amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt; line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use ABAP ensure that the encoding output is the right one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OPEN DATASET dsn IN TEXT MODE FOR OUTPUT ENCODING UTF-8&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use a editor ensure that you use the right encoding at the saving time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gianpietro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 13:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/illegal-xml-character/m-p/2862823#M671368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T13:17:36Z</dc:date>
    </item>
  </channel>
</rss>

