Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

SslErrorHandler

extends Handler
java.lang.Object
   ↳ android.os.Handler
     ↳ android.webkit.SslErrorHandler

Class Overview

Represents a request for handling an SSL error. Instances of this class are created by the WebView and passed to onReceivedSslError(WebView, SslErrorHandler, SslError) . The host application must call either proceed() or cancel() to set the WebView's response to the request.

Summary

Public Methods
void cancel ()
Cancel this request and all pending requests for the WebView that had the error.
void proceed ()
Proceed with the SSL certificate.
[Expand]
Inherited Methods
From class android.os.Handler
From class java.lang.Object

Public Methods

public void cancel ()

Added in API level 1

Cancel this request and all pending requests for the WebView that had the error.

public void proceed ()

Added in API level 1

Proceed with the SSL certificate.