Hi,
I have a requirement in XSLT where in I have a xml as below,
<Process>
<name></name>
<duration></duration>
<time></time>
<name></name>
<duration></duration>
<time></time>
<name></name>
<duration></duration>
<time></time>
.
.
.
.
</Process>
<The first <name> node we get we create a Process_INfo and copy <name> in it and all other node following <name> till we get other <name> node. AS soon as we get a new <name> node we create a new <Process_Info> node amd repeat the previous process till we are done with all <name> nodes
I have to tranfrom this xsml using XSLT as,
<Process>
<Process_Info>
<name></name>
<duration></duration>
<time></time>
</Process_Info>
<Process_Info>
<name></name>
<duration></duration>
<time></time>
</Process_Info>
..
..
..
..
</Process>
Can you please let me know how we can do this???