0

I am generating correct cxml but doctype is missing in the beginning.

How can I add the below doc type after <?xml version="1.0" encoding="utf-8"?> and copy the remaining xml using XSLT mapping.

<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.032/cXML.dtd">

Desired output should be like

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.032/cXML.dtd">
<xml>
<field>.... (followed by remaining xml structure)

Thanks, Varun

1 Answers1

1

Try

<xsl:output method="xml"
  doctype-system="http://xml.cxml.org/schemas/cXML/1.2.032/cXML.dtd"
/>
Stefan Hegny
  • 2,107
  • 4
  • 23
  • 26