Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using w3c DOM api in java . When I first parse my XML from an input stream and use dom.getElementById("nodeId") method , it works . But If I update my dom with some node element having ID attributes , and then tries to retrieve this node using dom.getElementById("ID"), then it doesn't work and return null. Any Idea ?

Thanks.

share|improve this question
1  
can you provide your code and what error you are getting ? – Hemant Metalia Feb 7 '12 at 10:23

1 Answer

up vote 1 down vote accepted

In fact the JavaDoc says something along the lines that getElementById returns the Element that has an ID attribute with the given value. An attribute with the name "ID" or "id" is not of type ID unless it is so defined.

How is an attribute defined as an ID attribute? With a DTD or schema. If you are not validating the XML, then the API is useless.

So, what to do if you want to find an element for which the attribute named "id" has a given value? Several options were offered in GetElementById Pitfalls. One of them is to use an XPath expression like this:"//*[@id = 'myId']".

Also, in the Apache XML Security project, the class org.apache.xml.security.utils.IdResolver was specifically created to address this problem. Calling IdResolver.getElementById(doc, id) will return the element you are looking for.

referhttp://www.xinotes.org/notes/note/738/

here is an example to achieve it Java: How to make getElementById() work using xml schema

share|improve this answer
Thanks Hamnet..but As I am saying I have made this working for me by using an XSD and now the problem is its working when I first parsed it but then for dynamically added nodes, its not working. – Chandan Feb 7 '12 at 10:29
can you provide some code snippet how you added nodes? – Hemant Metalia Feb 7 '12 at 10:31
First I am creating some nodes using anyElement = domDoc.createElement(type); and then parentNode.appendChild(anyElement ); – Chandan Feb 7 '12 at 10:33
@Chandan its fine. but without looking towards code i can not guess whats going wrong. – Hemant Metalia Feb 7 '12 at 11:29
@Hament,I have used the same sample "Java: How to make getElementById() work using xml schema" . It worked for me but not working for dynamically added node.If you can confirm that it will also work for dynamically added nodes as well, it will be great. – Chandan Feb 7 '12 at 14:01
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.