/* ------------------------------------------------------------ */
  public void resetBuffer() {
    if (isCommitted()) throw new IllegalStateException("Committed");

    ((HttpOutputStream) _httpResponse.getOutputStream()).resetBuffer();
    if (_writer != null) _writer.reset();
  }