The problem that I want to solve is that I need to create many XML files.
I know what tags are in which type of XML (examples of XML below) and I know a list of a possible data that could be in each tag.
Someone knows a good way to make that?
I can have XML like the examples below:
XML1:
<ID>1</ID>
<name>Maria</name>
<type>client</type>
<addresses>
<address>
<street>Brooklin</street>
<number>123</number>
<address>
<address>
<street>New York Street</street>
<number>1000</number>
<address>
</addresses>
XML2:
<name>Paulo</name>
<age>26</age>
<subject>complain</subject>
<addresses>
<address>
<street>Brooklin</street>
<number>123</number>
<address>
</addresses>