I am new to xslt programming. I want help to get a piece of code for my requirement,
I have an xml file which is like
<Tags>
<tag>
<value>abc</value>
</tag>
<tag>
<value>def</value>
</Tags>
The text inside value tags are the value of certain tags which will be present in the incoming xml request.
Now, I need an xslt code which would search if the incoming xml have any of the tags by looking into the list of tags which are present in the sample xml i have provided. If the tag is there than i want to save the value of that tag in a variable.
Thanks