}
private void sendFile() {
//let's start the writing
Util.get().log("Writing file: " + path);
Fs.get().readFile(path, new BufferEventHandler() {
@Override
public void onEvent(NodeJsError error, Buffer buffer) {
if (error != null) {
//uh oh
handleException(new HttpServerException(500, "Failure during read"));