--- parser3/src/classes/xdoc.C 2002/01/24 15:04:17 1.74 +++ parser3/src/classes/xdoc.C 2002/01/25 11:33:46 1.77 @@ -4,7 +4,7 @@ Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) Author: Alexander Petrosyan (http://paf.design.ru) - $Id: xdoc.C,v 1.74 2002/01/24 15:04:17 paf Exp $ + $Id: xdoc.C,v 1.77 2002/01/25 11:33:46 paf Exp $ */ #include "pa_types.h" #ifdef XML @@ -590,8 +590,13 @@ static void xdoc2buf(Pool& pool, VXdoc& OOE2STYLE(standalone); OOE2STYLE(omitXmlDeclaration); - xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n; - xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get()); + xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name)); + if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) { + GdomeException exc=0; + throw Exception(0, 0, + &method_name, + exc); + } // write out result char *gnome_buf; size_t gnome_size; @@ -603,7 +608,7 @@ static void xdoc2buf(Pool& pool, VXdoc& gnome_buf=(char *)outputBuffer->buffer->content; } if(file_spec) - file_write(pool, + file_write( *file_spec, gnome_buf, gnome_size, true/*as_text*/); @@ -703,7 +708,7 @@ static void _transform(Request& r, const // transform xsltStylesheet *stylesheet=connection->stylesheet(false/*nocache*/); - xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n; + xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name)); xsltTransformContext_auto_ptr transformContext( xsltNewTransformContext(stylesheet, document)); xmlDoc *transformed=xsltApplyStylesheetUser(