Referred links:
http://developer.android.com/training/articles/security-ssl.html#UnknownCa http://randomizedsort.blogspot.com/2010/09/step-to-step-guide-to-programming.html
I have the following code for connecting to server with self-signed certificate (I use this answer for the keystore part) :
try
{
final KeyStore ks = KeyStore.getInstance("BKS");
final InputStream inputStream = getApplicationContext().getResources().openRawResource(R.raw.certs);
ks.load(inputStream, getApplicationContext().getString(R.string.store_pass).toCharArray());
inputStream.close();
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
tmf.init(ks);
SSLContext context = SSLContext.getInstance("TLS");
context.init(null, tmf.getTrustManagers(), new SecureRandom());
URL url = new URL("https://www.mywebsite.com/");
HttpsURLConnection urlConnection = (HttpsURLConnection)url.openConnection();
urlConnection.setSSLSocketFactory(context.getSocketFactory());
InputStream in = urlConnection.getInputStream();
}
catch(Exception e) {
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG).show();
// the toast appear empty (described in question)
}
If I use my website's name as :
http://www.mywebsite.com
then in my surrounding try catch, an exception is thrown :
com.android.okhttp.internal.http.HttpURLConnectionImpl
cannot be cast to javax.net.ssl.HttpsURLConnection
If I use :
https://www.mywebsite.com
then I still get an exception, but due to some reason, the Exception object 'e' in catch(Exception e)
has empty message (its not null), so I can't figure out the exception.
If I try to use :
Log.d("TEST", e.getMessage());
then I get:
java.lang.NullPointerException: println needs a message
Can some one point out what I am doing wrong ?
Edit:
Here's the output of e.printStackTrace()
D/TEST﹕ e.printStackTrace() :
06-18 14:20:17.493 W/System.err﹕ android.os.NetworkOnMainThreadException
06-18 14:20:17.493 W/System.err﹕ at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1145)
06-18 14:20:17.493 W/System.err﹕ at java.net.InetAddress.lookupHostByName(InetAddress.java:385)
06-18 14:20:17.493 W/System.err﹕ at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
06-18 14:20:17.493 W/System.err﹕ at java.net.InetAddress.getAllByName(InetAddress.java:214)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.Dns$1.getAllByName(Dns.java:28)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:216)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.RouteSelector.next(RouteSelector.java:122)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:292)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpEngine.sendSocketRequest(HttpEngine.java:255)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:206)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:345)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:296)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:179)
06-18 14:20:17.493 W/System.err﹕ at com.android.okhttp.internal.http.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:246)
06-18 14:20:17.493 W/System.err﹕ at com.android.authmobile.app.TestActivity$1.onClick(TestActivity.java:90)
06-18 14:20:17.493 W/System.err﹕ at android.view.View.performClick(View.java:4438)
06-18 14:20:17.497 W/System.err﹕ at android.view.View$PerformClick.run(View.java:18422)
06-18 14:20:17.497 W/System.err﹕ at android.os.Handler.handleCallback(Handler.java:733)
06-18 14:20:17.497 W/System.err﹕ at android.os.Handler.dispatchMessage(Handler.java:95)
06-18 14:20:17.497 W/System.err﹕ at android.os.Looper.loop(Looper.java:136)
06-18 14:20:17.497 W/System.err﹕ at android.app.ActivityThread.main(ActivityThread.java:5017)
06-18 14:20:17.497 W/System.err﹕ at java.lang.reflect.Method.invokeNative(Native Method)
06-18 14:20:17.497 W/System.err﹕ at java.lang.reflect.Method.invoke(Method.java:515)
06-18 14:20:17.497 W/System.err﹕ at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
06-18 14:20:17.497 W/System.err﹕ at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
06-18 14:20:17.497 W/System.err﹕ at dalvik.system.NativeStart.main(Native Method)