I developed a Document Managment System (DMS) as a Delphi client server application that stores files as BLOB fields in a SQL Server Db using the FILESTREAM feature.
As more opies of the software are sold I recieve the request the connect it to other document managemnt systems, in the broadest sense "other DMS mean":
1 "structured folders") some folders in a harddrive that are accessible only to a restrict number of users (imagine a shared network folder accessible only from 3 users) - this could be a "real way of storing documents" or just the result of a daily export from another system (documents are extracted by a batch procedure daily from another DMS).
The foldernaming in this case has some rules, for ecample if documents are associated to customers or employees the strucure will be something like:
\\Docs\Employees\COdE01\cv.pdf
\\Docs\Customers\CodC02\Invoice.xls
(in this exaple CodEXX stands for Employee Code XX, Anc CodCXX for the Customer case)
2 webservices)
many DMS expose (secure) webservices to access(read)/insert/update/delete documents so in this way it is possible to keep my system in sync with the other DMS.
3) other functions / tools)
other DMS has tools (like command line tools to be run with parametersor stored functions) to perform access/insert/update/delete
Anyway in general the bidirectional sync is a problem, in my case i am more interested in 1 way, so basically accessing docs stored somewhere else
Which techniaues you can suggest to create a configurable feature?