I need to take the tag from one position to other.
The request is as follows
<Envelope>
<Header>
<Assertion></Assertion>
<Security></Security>
</Header>
</Envelope>
But I need an XSLT to put the assertion tag inside security as follows:
<Envelope>
<Header>
<Security>
<Assertion></Assertion>
</Security>
</Header>
</Envelope>
I appreciate Your Help. Thanks
The following stylesheet:
…produces the desired output when applied to your provided source: