XML2Spreadsheet: Probleme beim Parsen eines einfachen XML Baum

Hallo Stefan,


die parsing template ist fast korrekt. Es fehlt noch die Namespace Deklaration in der 1. Zeile:


<#ftl ns_prefixes={"D":"https://mws.amazonservices.com"}>
<#assign row = target.addRow()>
<#list xml["PingResponse"] as res>
  <#assign row = target.addRow()>
${row.addCol("timestamp",attr("timestamp",res['Timestamp']))}
${addColumns(row, res)}
</#list>


Viele Grüße

Torsten