Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can someone give me a short description how to use the tFileInputXML?
<?xml version="1.0" encoding="UTF-8"?>
<areas>
<area city="Paris">
<street district="2eme arrondissement">Rue de la Paix</street>
<street district="8eme arrondissement">Champs Elysees</street>
</area>
<area city="New York City">
<street district="Manhattan">Madison avenue</street>
<street district="Brooklyn">Washington heights</street>
</area>
</areas>
name '.'
district '@district'
city '../@city'
Rue de la Paix|2eme arrondissement|Paris
Champs Elysees|8eme arrondissement|Paris
Madison avenue|Manhattan|New York City
Washington heights|Brooklyn|New York City
Can someone give me a short description how to use the tFileInputXML?
<?xml version="1.0" encoding="UTF-8"?>
<areas>
<area city="Paris">
<street district="2eme arrondissement">Rue de la Paix</street>
<street district="8eme arrondissement">Champs Elysees</street>
</area>
<area city="New York City">
<street district="Manhattan">Madison avenue</street>
<street district="Brooklyn">Washington heights</street>
</area>
</areas>
name '.'
district '@district'
city '../@city'
Rue de la Paix|2eme arrondissement|Paris
Champs Elysees|8eme arrondissement|Paris
Madison avenue|Manhattan|New York City
Washington heights|Brooklyn|New York City
I'm trying to use the new tFileInputXML component to read the <job>.item xml-file
...
Are the schemas (XSD) published some where?