Re: [xml-dev] Java NPE at node.getAttribute( )

From
Nishi Prafull <>
To
John Rivett-Carnac <>
Date
2005-01-24T23:06:16Z
ID
<>
Thread
Re: [xml-dev] Java NPE at node.getAttribute( )
Hi John:
I tried your suggestion:
 NodeList nodeList=xmlDocument.selectNodes("/applet/transport", nsr);
  XMLElement  node=(XMLElement)nodeList.item(0);
  String trans_val1 = node.getAttribute("name");

But I still get a NPE at node.getAttribute("name").

Can you suggest anything?

Thanks.

On Mon, 24 Jan 2005 22:00:06 -0000, John Rivett-Carnac
<> wrote:
> 
> I think you should get the "transport" nodes in a node collection, then get
> the name attribute of each transport node:
> 
> NodeList nodeList=xmlDocument.selectNodes("/applet/transport", nsr);
> XMLElement  node=(XMLElement)nodeList.item(0);
> String trans_val1 = node.getAttribute("name");
> 
>