/** * Imprime la salida XML * */ public function out_response() { header('Content-Type: text/xml'); header('Pragma: no-cache'); header('Expires: 0'); $this->_xml->endElement(); // end <response> print $this->_xml->outputMemory(true); }