Andrea Rovinetti
Andrea Rovinetti

Reputation: 25

Multi-Access to file - Web Service

I've made a dynamic PDF file creator and every time I'll click a button it generate a new PDF file (removing the older) using data on a database.

My problem is that if I try to create a new PDF and the file is opened in any client the program can't edit the file.

Is there a way to create something like "sessions" that permit every user to edit the file at the same time?

P.S. Sorry for the bad english, I've tryed my best, I hope that someone edit my question in a proper way.

Upvotes: 1

Views: 57

Answers (1)

This is just vague solution to do

Step 1: Each time user requests for data, create a new PDF with time stamp in PDF Name, that way it stands unique.

Step 2: Try to delete old files as soon as you create new file. Or Step 2: Use a purge job to delete old files.

Upvotes: 1

Related Questions