Solved
Forum Discussion
nmrao
9 years agoCommunity Hero
Would you mind to explain what exactly you are trying to achieve? or why do you want to do so? Reason being, if we know the object, there could be alternate better solutions.
- evoks9 years agoOccasional ContributorHi,
Thanks for your answer.
For each index, I want the tag tree to each node, from the "Body" node- evoks9 years agoOccasional Contributor
(sorry for my english, I'm studying it at school).
To be more precise, if I have the following XML file :
<Body> <parent_Node_A>value_A</parent_Node_A> <parent_Node_B> <children_Node_B1>value_B1</children_Node_B1>
<children_Node_B2>value_B2</children_Node_B2>
</parent_Node_B> <parent_Node_C>value_C</parent_Node_C> <parent_Node_D> <children_Node_D>value_D</children_Node_D> </parent_Node_D> <parent_Node_E>value_E</parent_Node_E> </Body>The goal is to capture all parent nodes to each value returned by the groovy script.
For the "value_B1", I have to capture its parent nodes and concatenate them :
"Body/parent_Node_B/children_NodeB1=value_B1"
Second example, for the "value_D" :
"Body/parent_Node_D/children_Node_D=value_D"
Third example, for the "value_E" :
"Body/parent_Node_E=value_E"
I hope I've been more explicit.
Thanks.
- nmrao9 years agoCommunity Herosorry to come back again with same question. I already understand that part, you just repeated the same. But you did not explain why do you want to so?