I'm having problem in parsing XML element returned by SOAP because the XML structure is like this :
<a:journey>
<a:infantprice>0</a:infantprice>
...
</a:journey>
I have tried
.select("journey")
.select("a:journey")
But still not getting the xml value. Is it possible to select the XML segment with that format using Jsoup?
Thanks in Advance