Reputation: 2665
Implemented a webview inside a app. It is opening some https pages.It has some ssl issues. I have added those conditions also to ask from user to proceed or not.Now successfully opening pages in higher android version ,giving error in android 4.1.1
Below is the error
external/chromium/net/socket/ssl_client_socket_openssl.cc:792: [0506/103431:ERROR:ssl_client_socket_openssl.cc(792)] handshake failed; returned 0, SSL error code 5, net_error -107
The page at https://something.aspx displayed insecure content from
file:///android_asset/webkit/android-weberror.png. at null:1
Upvotes: 0
Views: 871
Reputation: 2727
Mixed content warning. Chromium warns on because the content is not loaded with https like the aspx page. Chromium doesn't like the fact that you are loading mixed-content on a page accessed using https. It's security warning since it could undermine the security of the page. Is your image not displaying or being blocked? See this similar question SSL: Why does Chrome report mixed content? (Drupal 6). The question specfically mentions Chrome which is also based on chromium.
Upvotes: 1