Is it better to use the setSoTimeout on java.net.Socket or to wrap the service making the Http calls with another class with an ExecutorService and manage method timeouts with Futures?
Better is currently defined as good practice / more reliable / accurate. Not necessarily considering impact on performance unless it is considerable.
Edit: Should have also mentioned the connect(SocketAddress endpoint, int timeout) method on java.net.Socket to be clearer.