Logcat printing "interface name: null" during each DefaultHttpClient execution method call Logcat printing "interface name: null" during each DefaultHttpClient execution method call android android

Logcat printing "interface name: null" during each DefaultHttpClient execution method call


Are you using the DefaultHTTPClient Asynchronously? I had a similar error in the past (Android 2.x) and found once I made a singleton for the DefaultHTTPClient and put my web request inside an AsyncTask this error went away.


Use these;

HttpClient client = new DefaultHttpClient();