HttpPost で IOExeption 'Host is unresolved' を取得しています。この場合のエンドポイントは、Web サービスを備えた LAN 上のコンピューターです。( http://pc259:8080/test/service.asmx )。LANに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);