We recently had WebAccess setup on a different server and the SDK and new dlls were loaded so that we could continue committing files to Laserfiche over the web but a script we had written no longer works with the fresh install and version 10. With the following code, is there something that could have changed in the DLLs whereby this code would no longer work? NO ERRORS are generated....but the documents don't appear in Laserfiche. Any advice would be greatly appreciated! Thanks.
DocumentInfo docInfo = CreateNewDocumentInfo( Title, docsFolder, FileName); var importer = new DocumentImporter { Document = docInfo }; using (var fileStream = new MemoryStream((byte[])adreviewFile.FileValue)) importer.ImportEdoc(contentType, fileStream);