java - "Peer not authenticated" error on Google App Engine -
i have java application running on google app engine makes http post request follows:
private static string submitxml(string xml, string url) throws exception { httpclient client = new defaulthttpclient(); httppost request = new httppost(url); request.setentity(new stringentity(xml)); responsehandler<string> responsehandler = new basicresponsehandler(); string body = client.execute(request, responsehandler); return body; // 'peer not authenticated' error }
recently, has been throwing 'peer not authenticated' error. can advise why case? not happening @ until recently.
Comments
Post a Comment