{
//
HttpURLConnection conn = (HttpURLConnection)driverURL.openConnection();
conn.connect();
Response response;
if (conn.getResponseCode() == 200)
{
InputStream in = conn.getInputStream();
byte[] bytes = IOTools.getBytes(in);
response = (Response)IOTools.unserialize(bytes);