Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

NIFI:How to get node value using variable node name in nifi processor

avatar

i have xml data like this below and i want to get localAttribtes tag by name 'rs' in my EvaluateXpath processor i tried this expression in my EvaluateXpath processor //localAttributes/*[@name='rs']/name() but i don't get "rs" tag value :

<?xml version="1.0" encoding="UTF-8" standalone="no"?><service><localAttributes name="rs"><start>2017-09-07</start><startDate>2017-02-02</startDate><endDate>2017-03-02</endDate><runAs>true</runAs><patch>this is patch</patch><makeVersion>1</makeVersion></localAttributes><localAttributes name="ns"><start>2017-09-07</start><startDate>2017-02-02</startDate><endDate>2017-03-02</endDate><runAs>true</runAs><patch>this is patch</patch><makeVersion>1</makeVersion></localAttributes></service>

39822-d.png

1 ACCEPTED SOLUTION

avatar
Master Guru
@sally sally

can you change the property to

//localAttributes[@name='rs']

it will gives you only

<?xml version="1.0" encoding="UTF-8"?><localAttributes name="rs">
<start>2017-09-07</start>
<startDate>2017-02-02</startDate>
<endDate>2017-03-02</endDate>
<runAs>true</runAs>
<patch>this is patch</patch>
<makeVersion>1</makeVersion>
</localAttributes>

(or)

if name=rs is first in value every time in local attribute node then you can use

//localAttributes[1]

will results the same output.

View solution in original post

2 REPLIES 2

avatar
Master Guru
@sally sally

can you change the property to

//localAttributes[@name='rs']

it will gives you only

<?xml version="1.0" encoding="UTF-8"?><localAttributes name="rs">
<start>2017-09-07</start>
<startDate>2017-02-02</startDate>
<endDate>2017-03-02</endDate>
<runAs>true</runAs>
<patch>this is patch</patch>
<makeVersion>1</makeVersion>
</localAttributes>

(or)

if name=rs is first in value every time in local attribute node then you can use

//localAttributes[1]

will results the same output.

avatar

yes it was helpful thank you