in reply to Best module for Creating [Writing out] XML

I found XML::Writer to be convinient to write XML files in stream mode (i.e. "start tag A, start tag B with attribute C = "1", print XML-encoded data, close two tags"). It probably won't be so easy to work with it if you already have a tree of data to serialize, and complex things like automatic schema validation and namespace fetching are not implemented, but otherwise XML::Writer can help you.

  • Comment on Re: Best module for Creating [Writing out] XML