Je voudrais faire des BIT (Built in tests) sur un certain nombre de serveurs dans mon cloud. J'ai besoin que la demande échoue sur un délai d'attente important.
Comment dois-je faire cela avec java?
Essayer quelque chose comme ci-dessous ne semble pas fonctionner.
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("");
}
}
- EDIT: clarifier quelle bibliothèque est utilisée -
J'utilise httpclient d'Apache, voici la section pom.xml correspondante
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0.1</version>
<type>jar</type>
</dependency>