Hi,
I have a VS project that creates a document in laserfiche.
On line
int iEntryID = Document.Create(fi, sSeries, "VOLUMES000000", EntryNameOption.AutoRename, raSession);
I get:
Laserfiche.RepositoryAccess.AccessDeniedException: Access denied. [9013]
at Laserfiche.RepositoryAccess.Entry.MakeDocFolder(String path, String volumeName, EntryType entryType, String lockToken, EntryNameOption options, Session session)
at Laserfiche.RepositoryAccess.Document.Create(FolderInfo parentFolder, String name, String volumeName, EntryNameOption options, Session session)
at ImportDocumentsInvenergy.Form1.button1_Click(Object sender, EventArgs e)
I try using the admin user with the same results.
If I go to the client under the same user, I can create a document in the destination folder with no problem.
I try restarting the services but still the same issue.
I try from the same project, to import a document to a blank document by specifying the entry id and it works fine. Always same user.
DocumentInfo diNewDoc = Document.GetDocumentInfo(iEntryID, raSession); docImp.Document = diNewDoc; docImp.ImportEdoc(sFileMime, file);
Any ideas?
Thanks
Gian