I am using Jodd HTTP client for testing some REST APIs. Everything works fine (great, actually:) except I am not sure how to set the socket time out value. So sometimes, when server is not up, I need to wait for long time (because of default systems timeout is big).
I am using http request like this:
HttpResponse response = HttpRequest.get("http://server").query("p1", "v1")....send();
I do not see any timeout related method in HttpRequest
class.