I have an existing app that runs on Android phones 2.1 and above that connects to a web service and parses out the returned XML to present the user, authenticate, etc.
Since Android is supposed to be forward friendly one would expect that my app would work on the 3.x.x tablet builds BUT it doesnt.
Oddly enough, even in the emulator, this block of code fails and the exception that is caught is NULL so i am without any guidance as to why.
Here is the code:
Log.i("Client Details URL", "http://sampleurl");
URL url = new URL("http://sampleurl);
Log.i("DEBUG MARKER", "1 of 4");
urlCon = url.openConnection();
con = (HttpURLConnection)url.openConnection();
//if(Thread.interrupted())
// throw new InterruptedException();
Log.i("DEBUG MARKER", "2 of 4");
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Log.i("DEBUG MARKER", "3 of 4");
String type = con.getContentType();
Log.i("DEBUG MARKER", "3.5 of 4");
doc = db.parse(con.getInputStream());
doc.getDocumentElement().normalize();
Log.i("DEBUG MARKER", "4 of 4");
The output of the logcat is as follows:
10-13 16:24:46.097: INFO/DEBUG MARKER(409): 1 of 4
10-13 16:24:46.117: INFO/DEBUG MARKER(409): 2 of 4
10-13 16:24:46.117: INFO/DEBUG MARKER(409): 3 of 4
10-13 16:24:46.137: ERROR/GETDOCUMENTS(409): Fatal Exception: null
10-13 16:24:46.137: ERROR/GETDOCUMENTS(409): Fatal Exception: [Ljava.lang.StackTraceElement;@4070edd0
As you can see from the log output it is failing when I try to perform any action on the connection. I have this encapsulated in a try/catch so the error is caught outside the scope of the block i have provided but you can see where it is failing with all the info i have provided.
Any input on this would be awesome, even if it is just to try some other stuff out.