java - How to parse XML element from SOAP response using Jsoup -
i'm having problem in parsing xml element returned soap because xml structure :
<a:journey> <a:infantprice>0</a:infantprice> ... </a:journey>
i have tried
.select("journey") .select("a:journey")
but still not getting xml value. possible select xml segment format using jsoup?
thanks in advance
i think, got answer question.
i should use :
.select("a|journey");
according documentation :
ns|tag: find elements tag in namespace, e.g. fb|name finds elements
source : http://jsoup.org/cookbook/extracting-data/selector-syntax
thanks
Comments
Post a Comment