proxy.start();
System.out.println(" proxy listening on " + proxy.getLocalPort());
HttpClientConnection con = new HttpClientConnection("localhost", proxy.getLocalPort());
con.setOption(IConnection.SO_RCVBUF, 64);
con.suspendReceiving();
FutureResponseHandler respHdl = new FutureResponseHandler();
GetRequest request = new GetRequest("/test?filename=" + URLEncoder.encode(file.getAbsolutePath()));
con.send(request, respHdl);