Live,
Is it possible to get the name resolution time separate from the access time? The code I have is:
HttpURLConnection connection;
try {
URL endereco = new URL(url);
connection = (HttpURLConnection) endereco.openConnection();
...
Is it possible to split openConnection in order to take the 1st times resolution from the name to the DNS server and 2nd the access time?
Thank you.