how can i get the id

hi,
how can i obtain the documents’id stored into tamino from by java?

Hi Cri,

Using the Tamino java API and the class TXMLObject you can use the getId method. This gets the ino:id attribute for the TXMLObject instance.

Example:
while ( iterator.hasNext() ) {
TXMLObject xmlObject = iterator.next();
System.out.print( “ino:id="” + xmlObject.getId() +"" " );

Rob