Я пытаюсь сделать вызов API, используя HttpPost.PFB код
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("https://stage.provision.optimumwifi.com/services/AutoMacService/registerDevice");
httppost.addHeader("Authorization","Basic "+ Base64Coder.encodeString("********"));
StringEntity se = new StringEntity( xmlRequest, HTTP.UTF_8);
se.setContentType("text/xml");
httppost.setEntity(se);
HttpResponse httpresponse = httpclient.execute(httppost);
HttpEntity resEntity = httpresponse.getEntity();
Исключение составляет - java.net.UnknownHostException: stage.provision.optimumwifi.com