Posts

Showing posts with the label Bulk Importing Using The User Interface

Upload Metadata And Files Using Batch Import Or Bulk Import In Alfresco | Code Factory

Image
Alfresco One 5.x Developer's Guide :  Download. Streaming bulk import is exposed in two web scripts: A simple UI web script that can be used to set up the parameters for an import. This is an HTTP GET web script with a path of: http://localhost:8080/alfresco/service/bulkfsimport An initiate web script that kicks off an import using parameters that are passed to it (for the source directory, target space, and so on). If you want to script or invoke the tool programmatically, this is the web script that you call. This is an HTTP POST web script with a path of:  http://localhost:8080/alfresco/service/bulkfsimport/initiate The UI web script presents the following simplified HTML form: The  Import directory  field is required and indicates the absolute file system directory to load the content and spaces from, in an OS-specific format. Note that this directory must be locally accessible to the server on which the Alfresco instance is running. It m...