CAS 6


XML Export "Prolog" settings

CAS allows the user to define the XML prolog text.

The default value is

<?xml version="1.0" encoding="UTF-8"?>

The prolog is anything before the root element of the document.

Custom prolog lets the user define schema definitions, custom attributes and even comments.

Example

Result

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"></xs:schema>
<!-- This is a comment -->
<Loans>
  <Loan>
    <LOANID>0010322</LOANID>
    <MTDATE>20300601</MTDATE>
    <CURBAL>86432</CURBAL>
    <RATE>0</RATE>
    <Address>
      <CITY>HADDON HEIG</CITY>
      <STATE>PA</STATE>
      <Balances>
        <CURBAL>86432</CURBAL>
        <ORIGBAL>70200</ORIGBAL>
      </Balances>
    </Address>
  </Loan>
</Loans>

Related to: XML Export Object