axiom_xml_writer_create opened file can't be closed correctly
-------------------------------------------------------------

                 Key: AXIS2C-448
                 URL: http://issues.apache.org/jira/browse/AXIS2C-448
             Project: Axis2-C
          Issue Type: Bug
          Components: xml/om
    Affects Versions: Current (Nightly)
         Environment: linux simple_http_client
            Reporter: Marc Giger


xml_writer = axiom_xml_writer_create(env, filename, "UTF-8", 0, 0);
om_output = axiom_output_create(env, xml_writer);
AXIOM_XML_WRITER_WRITE_START_DOCUMENT(xml_writer, env);
AXIOM_NODE_SERIALIZE(node, env, om_output);     
AXIOM_XML_WRITER_WRITE_END_DOCUMENT(xml_writer, env);

//workaround so that the file is fully written and closed
AXIOM_XML_WRITER_GET_XML(xml_writer, env);

AXIOM_OUTPUT_FREE(om_output, env);

I have to call AXIOM_XML_WRITER_GET_XML() so that the file is fully written and 
properly closed by
the underlying xmlTextWriter..

I think there is a function a la axiom_xml_writer_close() needed...

Patch welcome?

Thanks

Marc

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to