hi everyone i have the following xml file
<author>
<firstname>Akhilesh</firstname>
<lastname>Singh</lastname>
</author>
<author>
<firstname>Prassana</firstname>
<lastname>Nagaraj</lastname>
</author>
and i am using the following jxpath expression
concat(author/firstName," ",author/lastName)
to get the value Akhilesh Singh ,Prassana Nagaraj but i am getting only Akhilesh Singh.My requirement is that i should get the value of both author by executing only one JXPath expression .Thanks in advance