@Modified and getLastModified

getLastModified method of Document returns a value representing when the Document was last modified in this file (replica). @Modified returns when document was last modified initialy (potentialy in another replica). How do I access this last value from the Java API?

Subject: @Modified and getLastModified

Use:

session.evaluate(“@Modified”, doc).firstElement()

This issue is documented in a technote:

http://www-1.ibm.com/support/docview.wss?uid=swg21090983

Geir