From 56cb4e1788b2550c4dc4fc8d2b4190bdecb3d35b Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 7 Jun 2013 17:27:10 +0300 Subject: [PATCH] wpadebug: Add option to ignore SSL errors Signed-hostap: Jouni Malinen --- .../w1/fi/wpadebug/WpaWebViewActivity.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/wpadebug/src/w1/fi/wpadebug/WpaWebViewActivity.java b/wpadebug/src/w1/fi/wpadebug/WpaWebViewActivity.java index 70464393e..a7c54fc68 100644 --- a/wpadebug/src/w1/fi/wpadebug/WpaWebViewActivity.java +++ b/wpadebug/src/w1/fi/wpadebug/WpaWebViewActivity.java @@ -9,11 +9,15 @@ package w1.fi.wpadebug; import android.app.Activity; +import android.app.AlertDialog; +import android.content.DialogInterface; import android.content.Intent; import android.content.res.Configuration; +import android.net.http.SslError; import android.os.Bundle; import android.util.Log; import android.view.Window; +import android.webkit.SslErrorHandler; import android.webkit.WebChromeClient; import android.webkit.WebView; import android.webkit.WebViewClient; @@ -110,5 +114,33 @@ public class WpaWebViewActivity extends Activity description + " (URL=" + failingUrl + ")", Toast.LENGTH_LONG).show(); } + + @Override + public void onReceivedSslError(WebView view, SslErrorHandler handler, + SslError error) + { + Log.d(TAG, "SSL error: " + error); + + final SslErrorHandler h = handler; + AlertDialog.Builder alert = new AlertDialog.Builder(activity); + alert.setTitle("SSL error - Continue?"); + alert.setMessage(error.toString()) + .setCancelable(false) + .setPositiveButton("Yes", new DialogInterface.OnClickListener() + { + public void onClick(DialogInterface dialog, int id) + { + h.proceed(); + } + }) + .setNegativeButton("No", new DialogInterface.OnClickListener() + { + public void onClick(DialogInterface dialog, int id) + { + h.cancel(); + } + }); + alert.show(); + } } }