Hi,
Its my first post so please be gentle with me 😊
I have following problem:
I'm using javascript to fill exisiting Excel template with data.
So in one point of javascript code I have this:
var xlApp = new ActiveXObject("Excel.Application");
var xlBook = xlApp.Workbooks.Open("<path>template.xls");
I created template.xls as MIME in bsp application, but when I try to open it using its path, it wants to authenticate to get the file.
Is there way to open it without triggering second authentication?
Or maybe I should put template somewhere else ?
Best Regards,
Janusz