The solution here ended up being pretty simple. There are a couple of places in blog.cfc starting around line 803 where the the closing tag is missing or the tag is not properly self-closing. Correcting these fixed the problem. I am not sure why the line numbers do not correspond to the error. That created some confusion for me.
Magnus On Saturday, 23 May 2015 19:21:08 UTC-7, Magnus wrote: > > This error occurs whenever accessing the rss.cfm page. Thus suscribing to > RSS isn't possible. > > * The element type "itunes:category" must be terminated by the matching > end-tag "</itunes:category>". Line: 1092 Column: 6* > Request /rss.cfm > File Trace C:/Program Files/Apache Software Foundation/Tomcat > 7.0/webapps/oldncra/groundwire/rss.cfm > > Type org.xml.sax.SAXParseException > Tag Context CFSET (C:/Program Files/Apache Software Foundation/Tomcat > 7.0/webapps/oldncra/groundwire/rss.cfm, Line=81, Column=1) > Source > > 78: </cfmodule> > 79: </cfsavecontent> > 80: > 81: <cfset variables.lastModified = XMLSearch( XMLParse ( > variables.feedXML ), '//item[1]/pubDate' ) /> > 82: <cfif arrayLen(variables.lastModified) is 0> > > ^ Snippet from underlying CFML source > > What is org.xml.sax.SAXParseException? Is this a java call. The line > number in the bolded message above changes depending on the URL parameters > included, but it is always the same line in the rss.cfm file. Line 36, line > 703. What file and what line numbers is this refering to? There is no XML > folder or file in BlogCFC's org folder where components are kept. > > Thanks for any help. > > > -- -- online documentation: http://openbd.org/manual/ http://groups.google.com/group/openbd?hl=en --- You received this message because you are subscribed to the Google Groups "Open BlueDragon" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
