Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11278] iOS: Add method to ignore invalid SSL certificate

GitHub Issuen/a
TypeNew Feature
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2017-02-02T18:55:10.000+0000
Affected Version/sn/a
Fix Version/sRelease 6.0.2
ComponentsTiAPI
LabelsignoreSslError, ios, parity, webview
ReporterIngo Muschenetz
AssigneeHans Knöchel
Created2012-10-05T19:24:23.000+0000
Updated2017-02-14T17:26:55.000+0000

Description

Add support for a "ignoreSslError" property for Titanium.UI.WebView API

Comments

  1. Hans Knöchel 2017-01-25

    PR (master): https://github.com/appcelerator/titanium_mobile/pull/8786 PR (6_0_X): https://github.com/appcelerator/titanium_mobile/pull/8787 Test-Case:
       var win = Ti.UI.createWindow({
           title: 'TIMOB-11278'
       });
       
       var webView = Ti.UI.createWebView({
           ignoreSslError: true,
           url: 'https://self-signed.badssl.com/' // Test a self-signed TLS certificate
       });
       
       var nav = Ti.UI.iOS.createNavigationWindow({
           window: win
       })
       
       win.add(webView);
       nav.open();
       
  2. Josh Longton 2017-02-14

    The fix is present and tested as part of the FR. 6.0.2.v20170213142042 (6_0_X) 6.1.0.v20170213134957 (master) *Closing*

JSON Source