/**
  * Sends the response to the browser and ends the script
  */
 public function send()
 {
     WFEsession::end();
     WFEDb::disconnect();
     header('Content-type: ' . $this->getFormat());
     exit($this->getContent());
 }