Hi Guys I am having issues retrieving the contents of a chunk encoded web page. all pages that I try to retrieve throw: org.apache.http.MalformedChunkCodingException: Chunked stream ended unexpectedly
If I retrieve a page with no chunk encoding, the code works fine. HttpClient httpClient=new DefaultHttpClient(); HttpGet httpGet=new HttpGet(url); ResponseHandler<String> rh=new BasicResponseHandler(); String response=httpClient.execute(httpGet,rh); This will work with www.nds.com (no chunk encoding) but fail with www.google.co.uk (chunk encoding) Now, I am assuming this is a problem with the apache httpclient library, but wanted to know if anyone else has seen this problem and if there is a way of working around it in the current release. I am using android-sdk-linux_x86-1.1_r1 Regards Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

