I am trying to read XML feed from this URL using cfhttp tag in coldfusion
and i an using this code for it
<cfhttp url="https://architechsfortheweb.com/blogfeed/" method="GET" resolveurl="Yes" >
<cfhttpparam type="header" name="Content-Type" value="application/xml ">
<cfhttpparam type="header" name="mimetype" value="application/xml" />
<cfhttpparam type="header" name="Accept" value="application/xml ">
</cfhttp>
<cfset feedData = CFHTTP.FileContent>
<cfset xmlData = XMLParse(feedData)>
<cfdump var="#xmlData#">
please help me with this, already wasted so much time on this please help me and et me know what is my mistake