I have a xml retrieved from seedlist service like this.
<atom:feed xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:wplc="http://www.ibm.com/wplc/atom/1.0" xmlns:atom="http://www.w3.org/2005/Atom">
<atom:link href="/wps/images/icons/scope_search_wcm.gif" rel="icon"/>
<wplc:field id="name">Locations</wplc:field>
<wplc:field id="contentSourceType">Seedlist</wplc:field>
<wplc:field id="defaultcontext">/poc</wplc:field>
<wplc:field id="effectivedate">1354640637000</wplc:field>
<wplc:field id="modifier">uid=wpsadmin,o=defaultWIMFileBasedRealm</wplc:field>
<wplc:field id="securecontext">/mypoc</wplc:field>
<wplc:field id="search_controllable_uuid">f2bedbba-724e-420b-b066-5d0fef04c421</wplc:field>
<wplc:field id="locale">en</wplc:field>
I want to retrieve /mypoc
<wplc:field id="securecontext">/mypoc</wplc:field>
wplc
tag have common local name field
So I am unable to retrieve this.
I am using Abdera
parser to parse xml.
If it is possible I want to retrieve this using QName
or Feed.getSimpleExtension()
method