Re: [xml-dev] get attribute node value

From
Nishi Prafull <>
To
Michael Kay <>
Date
2005-04-13T19:27:32Z
ID
<>
Thread
Re: [xml-dev] get attribute node value
DOM:
I tried the following
NodeList nodeList=document1.selectNodes("/ns:configuration//plus/addr",lnsr);
    XMLElement abcNode = (XMLElement)nodeList.item(0);
    String abcaddrVal = sunNode.getAttribute("setup");
    String jreUrl = "http://" + abcaddrVal;
    sunNode.setAttribute("setup",jreUrl);

which correctly returns the first element attr and modifies it
<addr name ="abc" setup="/jpi/j2re.exe"/>

But if i try to do
XMLElement defNode = (XMLElement)nodeList.item(1);

it still returns me the above "abc" attribute entryand not the next
"def" element entry.

How can I resolve that?
Thanks.



On 4/12/05, Michael Kay <> wrote:
> It rather depends what technology you are using.
> 
> XSLT, XQuery, DOM, Java....?
> 
> Michael Kay
> http://www.saxonica.com/
> 
> > -----Original Message-----
> > From: Nishi Prafull [mailto:]
> > Sent: 12 April 2005 21:55
> > To: 
> > Subject: [xml-dev] get attribute node value
> >
> > Hi:
> > I have the following snippet
> > <plus>
> >     <addr name ="abc" setup="/jpi/j2re.exe"/>
> >     <addr name ="def"  setup="/jpi/jre.exe"/>
> > </plus>
> >
> > I need to modify the values of the setup attributes to
> >  setup="http://....../jpi/j2re.exe"
> >  setup="http://....../jpi/jre.exe"
> >
> > How should I get the value of the attribute node setup for both the
> > addr elements?
> > Thereafter I will modify it  by concatenating the new string
> > to the value.
> >
> > Thanks.
> >
> > -----------------------------------------------------------------
> > The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> > initiative of OASIS <http://www.oasis-open.org>
> >
> > The list archives are at http://lists.xml.org/archives/xml-dev/
> >
> > To subscribe or unsubscribe from this list use the subscription
> > manager: <http://www.oasis-open.org/mlmanage/index.php>
> >
> >
> 
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
> 
> The list archives are at http://lists.xml.org/archives/xml-dev/
> 
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://www.oasis-open.org/mlmanage/index.php>
> 
>