I have a vba makro which opens a document with a url from a server. The script looks like this:
Documents.Open("http://restservice/doc/" + TextBox1.value, True, False)
Everything works fine. I get my document. But looking through the logs of the restservice I found out that everytime Documents.Open was called once it made the excact same request to the given URL three times. Why does it do this and how can I prevent it. The restservice has to do a search in an archive to deliver the file. This comes at a certain cost. I'm using Word 10.