Hello,
I'm on Java and I put a xml in a dom. Now I need to check that all "mytag" as a ddiferent "id" value:

Qt Code:
  1. <xml........................>
  2. <mttag id="one"............./>
  3. <mttag id="two"............./>
  4. <mttag id="one"............./> //--error
  5. <mttag id="three".............>
  6. <mttag id="three.one"............./>
  7. <mttag id="three.one"............./> //--error
  8. </mtag>
To copy to clipboard, switch view to plain text mode 

How can I check it?
thanks,