// XMLHttpRequest content.
if(null != body && FormEncodingType.URL_ENCODED.getName().equals(contentType)){
connection.parseFormParameters(body);
}
long startTime = System.currentTimeMillis();
connection.execute();
return new LocalWebResponse(settings,connection,System.currentTimeMillis()-startTime);
}
}