response.setHeader("Event", call.getMethod());
response.setHeader("Content-Location", prefix + pathInfo);
IndividualRequest request = connection.getIndividualRequest(null, response);
request.setRequestedPath(pathInfo, Identification.idForString(pathInfo));
// target = PersevereServlet.handleRange(range, target, since,response);
String output = request.serialize(call.getContent());
response.setHeader("Last-Modified", "" + new Date()); // TODO: This should come from the transaction
response.getOutputStream().print(output);
response.getOutputStream().flush();
return 0;
}