In R5 this code worked but it’s not in working in R7
Set WordDocs = WordObj.Documents
WordDocs.Open(“https://HR0007Y.MyCompany.com/voice/w2/W22006.dot”)
In R7, this does work
Temp =“E:\Lotus\Domino\Data\domino\html\voice\w2\w22006.dot”
WordDocs.Open(Temp)
The path in both examples point to the same physical file and using the URL directly in a browser works fine. Permissions don’t seem to be an issue as both methods above point to the same physical file. Any ideas?