I am trying to take a feed provided by Active911 Below, Code is also below... But I keep getting a "Unable to read the source URL - handshake alert: unrecognized_name" error. I have used this same code over a dozen times on different rss feeds with no issues. I am pretty new to the coding world. If anyone could shine some light on my issue it would be greatly appreciated.
https://access.active911.com/interface/rss.php?r3vdie (Source of Feed)
http://www.lpvrs.org/response (Page I get the error on)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LPVRS 911 CALLS</title>
<!---Begin Pulling CAD Calls from SMC CAD RSS--->
<cfset rssUrl = "https://access.active911.com/interface/rss.php?r3vdnd">
<cffeed action="read" source="#rssUrl#" query="entries" properties="info">
</head>
<body>
<!---Begin CAD RSS Output--->
<table border="0" cellpadding="0" cellspacing="1" align="left">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr><td align="center" colspan="2" bgcolor="#E0E0E0"><h1><B>RECENT LPVRS RUNS</B></h1></td></tr>
<tr><td> </td></tr>
<cfoutput query="entries" maxrows="5" >
<tr><td align="left"><h1>#description#</h1></td></tr>
</cfoutput>
</td></tr></table>
</table>
</body>
</html>