Gostaria de fazer BIT (testes integrados) para vários servidores na minha nuvem. Preciso que a solicitação falhe em um grande tempo limite.
Como devo fazer isso com java?
Tentar algo como o abaixo não parece funcionar.
public class TestNodeAliveness {
public static NodeStatus nodeBIT(String elasticIP) throws ClientProtocolException, IOException {
HttpClient client = new DefaultHttpClient();
client.getParams().setIntParameter("http.connection.timeout", 1);
HttpUriRequest request = new HttpGet("http://192.168.20.43");
HttpResponse response = client.execute(request);
System.out.println(response.toString());
return null;
}
public static void main(String[] args) throws ClientProtocolException, IOException {
nodeBIT("");
}
}
- EDITAR: Esclareça qual biblioteca está sendo usada -
Estou usando httpclient do apache, aqui está a seção relevante do pom.xml
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0.1</version>
<type>jar</type>
</dependency>