Hi all,
I have the follow XML instance:
<RDN>
<ITP>
<element1>
<element2>
...
</ITP>
<AE1>
<element1>
<element2>
...
<NF2>
<element1>
<element2>
...
</NF2>
<AE2>
<element1>
<element2>
...
<AE4>
<element1>
...
</AE4>
</AE2>
<AE2>
<element1>
<element2>
...
<AE4>
<element1>
...
</AE4>
</AE2>
<TE1>
<element1>
<...>
</TE1>
</AE1>
<FTP>
<element1>
...
</FTP>
</RDN>
In the Integration Directory I configure to use file content conversion with this parameters:
Recordset structure: ITP,AE1,NF2,AE2,AE4,TE1,FTP
for eacth record set structure I inform the fieldFixedLengths parameters.
When this is processed, I receiver the error:
"more fields found in XML structure than specified in conversion parameters! (Value 'NF2')', probably configuration error in file adapter (XML parser error)'" handled by adapter.
How I configure the file adpter to output the file with this structure:
ITP.....
AE1....
NF2.....
AE2....
AE4....
AE2...
AE4....
TE1...
FTP...
The file conversion not work when I have a XML with nodes and subnodes?
thanks.