I have 2 Word documents that have a parent-child relationship to each other. Document B pulls a string from the data island inside of Document A using the ServerDocument (client side...no web or server here). Both documents are open at the same time. What happens is that when I update the cached string field in A, B doesn't see the updated value until after A has been closed, reopened, and then saved. It is like the data was cached in the AppDomain or other "Ether" and then when A reopened it sucked in the data and then the ServerDocument object in B was able to see it.
Anyone ever used the data islands like this What exactly is the process behind this cachng mechanism Is there a way to force the cache inside the document to be up-to-date without closing the document