'Local/session storage of Office Add-in
I developed an Microsoft Office Add-in for Outlook which forwards e-mails including some specific user-managed content. The add-in is hosted as a static website on GCP according to this Microsoft documentation. Everything works fine, but I need to know where data is transferred to and how I can prove it.
I need to prove that the Add-in only reads (GET) from GCP (the HTML, CSS & JavaScript files) and storages them locally (temporarily). This should be the case, because when I load the Add-in and then take down the GCP server, the Add-in including all functionalities still works for +/- 15 minutes.
How can I best prove that my Add-in reads the static files from GCP and stores them locally? I cannot find any Microsoft documentation on this.
Solution 1:[1]
Your add-in acts like a web site which is loaded locally and cached temporarily depending om the MIME header property values.
The Office cache folder is described in the Clear the Office cache article. Don't forget about the browser cache folder.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Eugene Astafiev |
