Are you sure
HttpResponse.toString() gets the data returned by the server? I would expect it to just give you some mangled object name - try printing the value and seeing what you get in logcat:
Code:
Log.d("CMS",response.toString());
I suspect you will need some extra code that does something like this:
Code:
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
And then you can read your data from the InputStream object.
-George