Nifi:how to add tag in xml response

2017-11-09 Thread sally
I want to add xml tag ${filename} to xml response which i got from service how should i do it i mean i have made replace, end even delet operations in replaceText processor but how can i add something? 1.Should i use Replace Text processor i should do it with groovy code?(p.s i should add this tag

Re: Nifi:how to add tag in xml response

2017-11-09 Thread Mark Payne
Sally, You can certainly use Replace Text to accomplish this if you are familiar with Regular Expressions. Alternatively Groovy could be used with the XmlSlurper class. You could also use TransformXml with an XSLT stylesheet, or use EvaluateXQuery if you are familiar with XQuery. Certainly ther

Re: Nifi:how to add tag in xml response

2017-11-09 Thread Mike Thomsen
Sally, On top of using XmlSlurper, you're going to want to use MarkupBuilder or StreamingMarkupBuilder depending on the size of the XML document. Alternatively, you can just do some copy pasta from Java examples of DOM parsing to build the DOM, insert a node and then use the Java DOM API to serial