/**
* Posts a request to the tracker and returns the result as a string
*/
protected String postRequest(Reader reader) throws IOException, ServletException {
StringWriter sw = new StringWriter();
new RequestHandler(tracker).processRequest(reader, sw);
return sw.toString();
}