Create XML
Posted: Tue Apr 06, 2021 12:55 pm
I try to create a SEPA XML-File. Everything goes fine except 1 item:
<?xml version="1.0" encoding="utf-8"?><Document xmlns="urn:iso:std:iso
tech:xsd:pain.001.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CstmrCdtTrfInitn xmlns="">
<GrpHdr>
...
</GrpHdr>
...
</CstmrCdtTrfInitn>
</Document>
The 'xmlns=' on the second line is wrong. This must without attributes. In Script there aren't attributes.
<?xml version="1.0" encoding="utf-8"?><Document xmlns="urn:iso:std:iso
<CstmrCdtTrfInitn xmlns="">
<GrpHdr>
...
</GrpHdr>
...
</CstmrCdtTrfInitn>
</Document>
The 'xmlns=' on the second line is wrong. This must without attributes. In Script there aren't attributes.