uarlive
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2016
03:47 PM
Skip SSL Verify
I am looking to skip the verification of the ssl certs on my server. Is there a skip ssl verify flag available in Brightscript?
2 REPLIES 2
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2016
05:32 PM
Re: Skip SSL Verify
It depends on the component you're using:
With roUrlTransfer, which implements the ifUrlTransfer interface, you can use the EnablePeerVerification() method with a parameter value of False.
If you're using any other component, e.g. roVideoScreen, etc, there is no interface I'm aware of that these components implement that will do that.
Of course, you could always put the certificates in your Roku package and call ifHttpAgent.SetCertificatesFile(), or configure your server to not do the validation.
With roUrlTransfer, which implements the ifUrlTransfer interface, you can use the EnablePeerVerification() method with a parameter value of False.
If you're using any other component, e.g. roVideoScreen, etc, there is no interface I'm aware of that these components implement that will do that.
Of course, you could always put the certificates in your Roku package and call ifHttpAgent.SetCertificatesFile(), or configure your server to not do the validation.
uarlive
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2016
06:43 AM
Re: Skip SSL Verify
Thanks Belltown.