N
naima.mans
Hello
I'm newbie to XSLT and i need some advice please:
Here the action:
I have to browse an XML file with xslt :
For each node i have to determinate if it is a node where i need to add
an attribute...
The question is:
What is the best manner to browse the xml file? (prefix browse,
postfixe browse??)
an example:
THE XML FILE:
<persone>
<id>123</id>
<name>samantha</name>
<adresse>
<id>abc</id>
<road> wall street </road>
</adresse>
</personne>
THE RESULT after XSLT transformation: (i have copy the ID attribut in
the father node)
<persone id=123>
<id>123</id>
<name>samantha</name>
<adresse id=abc>
<id>abc</id>
<road> wall street </road>
</adresse>
</personne>
thanks a lot
Tachi
I'm newbie to XSLT and i need some advice please:
Here the action:
I have to browse an XML file with xslt :
For each node i have to determinate if it is a node where i need to add
an attribute...
The question is:
What is the best manner to browse the xml file? (prefix browse,
postfixe browse??)
an example:
THE XML FILE:
<persone>
<id>123</id>
<name>samantha</name>
<adresse>
<id>abc</id>
<road> wall street </road>
</adresse>
</personne>
THE RESULT after XSLT transformation: (i have copy the ID attribut in
the father node)
<persone id=123>
<id>123</id>
<name>samantha</name>
<adresse id=abc>
<id>abc</id>
<road> wall street </road>
</adresse>
</personne>
thanks a lot
Tachi