• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Unable to read the source URL - handshake alert: unrecognized_name

New Here ,
Jan 29, 2016 Jan 29, 2016

Copy link to clipboard

Copied

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>

Views

410

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Feb 05, 2016 Feb 05, 2016

Copy link to clipboard

Copied

LATEST

It's probably due to SSL.  What version of ColdFusion are you using?  If CF9/10, there could be some bugs that are preventing it from working with newer SSL certificates.  (CFX_HTTP5 is an option that works on CF7+.)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation