tags:

views:

20

answers:

0

Hi all,

I have created a web view which shows https url , i have created webview client which handles the onReceivedSslError.

webview client

final WebViewClient mWebviewclient = new WebViewClient(){ public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error){ handler.proceed();

}

};

Im getting the result in the android emulator, but when i run the code in device im getting following error.

"Http header field Accept with the value "application\xml,application\xhtml+xml ...... could not be parsed.

can any one tell me the reason for it and too help me with the solutions

Thanks SujithRavindran