<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : RSS Invalid Character Problem</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : RSS Invalid Character Problem]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 11:15:03 +0000</pubDate>
  <lastBuildDate>Mon, 17 Apr 2006 18:39:45 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=19297</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[RSS Invalid Character Problem : Must be the encoding then. ]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104628.html#104628</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 17&nbsp;April&nbsp;2006 at 6:39pm<br /><br /><P>Must be the encoding then.</P>]]>
   </description>
   <pubDate>Mon, 17 Apr 2006 18:39:45 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104628.html#104628</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : The description tag is surrounded...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104466.html#104466</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 16&nbsp;April&nbsp;2006 at 12:43pm<br /><br />The description tag is surrounded with &lt;!&#091;CDATE&#091;&nbsp;&nbsp;&nbsp;&nbsp; &#093;&#093; as it is the only way to display HTML code in an RSS Feed]]>
   </description>
   <pubDate>Sun, 16 Apr 2006 12:43:44 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104466.html#104466</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : Yes, I bet it had to be a pain...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104376.html#104376</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 2:35pm<br /><br />Yes, I bet it had to be a pain to get to work for everybody.&nbsp; Theproblem is you can tell it how you want the web page encoded (UTF-8)for example, but when someone pastes something from their WordProcessor or another web page that is encoded differently, I don'tthink what gets saved in the database is UTF-8.&nbsp; It's whatever waspassed to the database.<br><br>In version 7.x of WWF, I had to change WWF to display in ISO-8859-1because of the problem of characters not showing up correctly.&nbsp; Almostall my users use ISO-8859-1, and the headers and footers ASP code is inISO-8859-1 as well.&nbsp; <br><br>What was weird is IE 6 displayed the forums fine, FireFox 1.x (if Irecall) displayed it fine, but FireFox 1.5x was screwing up the page.<br><br>What I in my articles RSS feed did that helped was surround the description content with a &lt;!&#091;CDATE&#091;&nbsp;&nbsp;&nbsp;&nbsp; &#093;&#093; tag, which prevents newsreaders from chocking on characters that are not valid in XML.&nbsp; <br><br><a href="http://www.caribbeanchoice.com/rss.asp" target="_blank">http://www.caribbeanchoice.com/rss.asp</a><br><br><table width="99%"><tr><td><pre class="BBcode">Response.Write "&lt;description&gt;"&nbsp; &amp; vbCrlf <br>Response.Write "&lt;!&#091;CDATA&#091;" &amp; vbCrlf <br><br>IF rst("ContentAuthorDisplayName").Value &lt;&gt; "" THEN<br>&nbsp;&nbsp; &nbsp;Response.Write "By " &amp; rst("ContentAuthorDisplayName").Value&nbsp;&nbsp; &nbsp;<br>END IF <br><br>IF rst("ContentSubHeadline").Value &lt;&gt; "" THEN<br>Response.Write "&lt;p&gt;" &amp; rst("ContentSubHeadline").Value<br>END IF<br><br>IF rst("ContentExcerpt").Value &lt;&gt; "" AND rst("ContentSubHeadline").Value &lt;&gt; rst("ContentExcerpt").Value THEN<br>&nbsp;&nbsp; &nbsp;Response.Write "&lt;p&gt;" &amp; rst("ContentExcerpt").Value <br>END IF<br><br>IF rst("ContentExcerpt").Value = "" THEN <br>&nbsp;&nbsp; &nbsp;If Len(rst("ContentContent").Value) &gt; 500 Then <br>&nbsp;&nbsp; &nbsp;dot = "... &lt;a href=" &amp; LinkURL &amp; "&gt;Read More...&lt;/a&gt;" <br>&nbsp;&nbsp; &nbsp;Else <br>&nbsp;&nbsp; &nbsp;dot = ""<br>&nbsp;&nbsp; &nbsp;End If<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Response.Write Left(rst("ContentContent").Value,500) &amp; "" &amp; dot<br>END IF<br><br>Response.Write "&#093;&#093;&gt;" &amp; vbCrlf<br>Response.Write "&lt;/description&gt;" &amp; vbCrlf</pre></td></tr></table>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 14:35:53 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104376.html#104376</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem :    neil.carter wrote:Wistex...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104356.html#104356</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 11:01am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by neil.carter" alt="Originally posted by neil.carter" style="vertical-align: text-bottom;" /> <strong>neil.carter wrote:</strong><br /><br />Wistex is correct - if you change the encoding of the rss feed to ISO-8859-1 you no longer get the error as you can see <a href="http://www.bhpc.org.uk/forum8/RSS_topic_feed.asp" target="_blank">http://www.bhpc.org.uk/forum8/RSS_topic_feed.asp</a>.<div>&nbsp;</div><div>Presumably this is because this is how its encoded in the database. </div></td></tr></table><br><br>It seems to on your forum, but if you try and use a space as the separator when using ISO-8859-1 it displays '?' in between dates, if you use UTF-8 it doesn't.<br><br>This is one of the biggest issues with designing this type of software is also making it generic enough to run on so many different systems with so many different setups.<br>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 11:01:03 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104356.html#104356</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : Your link is working fine in my...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104355.html#104355</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 10:58am<br /><br />Your link is working fine in my copy of IE now, so it seems in version 8 full this problem has been solved.<br><br>You may have some issues with old posts for a while till they are no longer part of the RSS Feed.<br><br>Although in IE is does display a square symbol as quotes are changed to &amp;#146; I have changed this for the next version to &amp;#039; which also gets rid of the square block issue in IE and displays quote correctly in IE<br>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 10:58:34 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104355.html#104355</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : Wistex is correct - if you change...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104353.html#104353</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=23450">neil.carter</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 10:54am<br /><br />Wistex is correct - if you change the encoding of the rss feed to ISO-8859-1 you no longer get the error as you can see <a href="http://www.bhpc.org.uk/forum8/RSS_topic_feed.asp" target="_blank">http://www.bhpc.org.uk/forum8/RSS_topic_feed.asp</A>.<DIV>&nbsp;</DIV><DIV>Presumably this is because this is how its encoded in the database. </DIV>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 10:54:09 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104353.html#104353</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : I can recreate the problem by...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104346.html#104346</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=23450">neil.carter</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 10:36am<br /><br />I can recreate the problem by putting the character either into a post body or forum topic - for example <DIV>&nbsp;</DIV><DIV>What’s New</DIV><DIV>&nbsp;</DIV><DIV>Should cause the RSS feed to fail with an error </DIV>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 10:36:29 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104346.html#104346</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : The version I upgraded from was...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104343.html#104343</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=23450">neil.carter</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 10:24am<br /><br />The version I upgraded from was installed without any modifications - I will delete the problematic post and see if I can recreate it. <DIV></DIV><DIV></DIV><DIV></DIV><DIV></DIV><DIV></DIV>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 10:24:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104343.html#104343</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem : The encoding UTF-8 in tests worked...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104339.html#104339</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 15&nbsp;April&nbsp;2006 at 10:11am<br /><br />The encoding UTF-8 in tests worked the best.<br><br>I have been looking into this issue as I did do exhustive testing on this due to problems in previous versions and couldn't workout why you got this issue.<br><br>Anyway, the single quote ' that is coursing the issue in your subjects should be there as it should have been encoded on the way into the database for security reasons. This is why it didn't come up in testing.<br><br>The only thing I can think is that the version you upgraded from was modified or didn't encode the ' singe quote mark.<br><br>The only thing I therefore can suggest is that you leave it and see if the problem sorts itself out in the new version as new posts come in.<br>]]>
   </description>
   <pubDate>Sat, 15 Apr 2006 10:11:12 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104339.html#104339</guid>
  </item> 
  <item>
   <title><![CDATA[RSS Invalid Character Problem :  http://feedvalidator.org/docs/error/UnicodeError.htmlIt...]]></title>
   <link>https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104268.html#104268</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 19297<br /><strong>Posted:</strong> 14&nbsp;April&nbsp;2006 at 6:13pm<br /><br />http://feedvalidator.org/docs/error/UnicodeError.html<br><br>It looks like you either need to turn curly quotes into regular quotes, and curly apostrophes into regular apostrophes... or you need to change the encoding to ISO-8859-1, which allows those characters.<br><span style="font-size:10px"><br /><br />Edited by wistex - 14&nbsp;April&nbsp;2006 at 6:14pm</span>]]>
   </description>
   <pubDate>Fri, 14 Apr 2006 18:13:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/rss-invalid-character-problem_topic19297_post104268.html#104268</guid>
  </item> 
 </channel>
</rss>