I\'m trying to call a Google Service in a GAE application hosted in GAE cloud:
private String doPost(String URL) throws ClientProtocolException, IOException {
Can you use a different http client? Such as recommended here:
client = new HttpClient(new SimpleHttpConnectionManager());
Or what about using the URLFetchService?
According to this blog post you need a:
"custom connection manager that converts the final requests and feed them into the URL Fetch service, and then feeds the responses back into HttpClient."