Я получаю IOExeption 'Host is unresolved' на HttpPost. Конечной точкой в данном случае является компьютер в моей локальной сети с веб-сервисом. (http://pc259:8080/test/service.asmx). Я использую WIFI в своей локальной сети. Знает ли Android о разрешенных компьютерах?
StringEntity se = new StringEntity(xmlDataToSend);
se.setContentType("text/xml");
HttpPost httppost = new HttpPost(endPoint);
httppost.setHeader("Content-Type","application/soap+xml");
httppost.setEntity(se);
HttpClient httpclient = new DefaultHttpClient();
Log.i(TAG, " - Before execute");
httpResponse = (BasicHttpResponse) httpclient.execute(httppost);