i want to extract multiple fields from JSON/XML using XML Parser etc..i am able to extarct with groovy but i want to achive like below
- reading a file from S3 using data_format as XML
- extarct multiple fileds from XML in step 2
<body>
<head>1</heaad>
<m>3</m>
<tail>2</tail>
<body>
in step 2 i want to have 2 values in my output with out using any groovy etc..
i want to achive using XML parser or filed mapper etc.. as of today i see only one value i can extarct these ex : /body/head
but i want to extarct both
/body/head
/body/tail