Sezer Korkmaz
Sezer Korkmaz

Reputation: 160

How to resolve the Crosswalk SSL Certificate Error

@Override
public void onReceivedSslError(XWalkView view, ValueCallback<Boolean> callback, SslError error) {
    callback.onReceiveValue(true);
}

I've changed this code in XWalkCordovaResourceClient class. It allows ignore self signed certificates in 1.7.2 version crosswalk. After I updated crosswalk version to > 1.7.2 it throws exception that Request was denied for security.

How can I resolve this SSL error?

Upvotes: 16

Views: 2269

Answers (0)

Related Questions