abemishler
13 years agoVisitor
SSL "broke" my channel [SOLVED]
Hello all,
My channel is based on the "videoplayer" example found in the RokuSDK download.
The code to parse a feed is straight forward, yet I am having difficulty getting past the "Can't parse feed" error thrown by:
starting on line 65 of "categoryFeed.brs". This wasn't always the case, however, and I believe I know the reason why. One thing that has changed recently on my server is that we default to serving all content through https. (I have verified the validity of my XML and know for certain the XML itself is not causing the error).
I believe the following line is the reason I can no longer load/parse my feed:
Does anyone have experience connecting with https? I've tried searching The Documentation but the search feature doesn't return very useful results. Google doesn't return very useful results either.
I'm hoping to find a method/function I could call similar to:
Thanks in advance,
Abe
edit: marked as [SOLVED] in subject
My channel is based on the "videoplayer" example found in the RokuSDK download.
The code to parse a feed is straight forward, yet I am having difficulty getting past the "Can't parse feed" error thrown by:
xml=CreateObject("roXMLElement")
if not xml.Parse(rsp) then
print "Can't parse feed"
return invalid
endif
starting on line 65 of "categoryFeed.brs". This wasn't always the case, however, and I believe I know the reason why. One thing that has changed recently on my server is that we default to serving all content through https. (I have verified the validity of my XML and know for certain the XML itself is not causing the error).
I believe the following line is the reason I can no longer load/parse my feed:
http = NewHttp(conn.UrlCategoryFeed)
Does anyone have experience connecting with https? I've tried searching The Documentation but the search feature doesn't return very useful results. Google doesn't return very useful results either.
I'm hoping to find a method/function I could call similar to:
NewHttps(conn.UrlCategoryFeed)
Thanks in advance,
Abe
edit: marked as [SOLVED] in subject