Hi, >From what I understand you need to import some data in batch mode inside Nuxeo5.
Basically you have 2 ways : 1 - Using Core remote API You can write your a small client applucation that reads the data from your database and writes it to Nuxeo Core. This can be done locally from the same JVM that Nuxeo core or from another JVM (EJB3 remoting). Core API is made for that. Bogdan made samples of code on using Core API in the svn : http://svn.nuxeo.org/trac/nuxeo/browser/sandbox/nuxeo-api-sample/trunk 2 - Using the Inport/Export system You can make a reader plugin for reading the data from your database and configure a Nuxeo Inport pipe to write it into Nuxeo repository. The Import/Export system is in the very final development phase. http://svn.nuxeo.org/trac/nuxeo/browser/org.nuxeo.ecm.core/trunk/nuxeo-core-api/src/main/java/org/nuxeo/ecm/core/api/io/ There will be some samples soon. Tiry Le vendredi 15 juin 2007 à 17:10 -0400, [EMAIL PROTECTED] a écrit : > Dear All, > > I need some examples of creating Documents in Batch Mode. The following is > the use case:- > 1. Mailing Room application contains meta data information and attachment > location as a record in the database table > 2. Each night the batch application reads the meta data information > 3. Information igets pre-filled in a Document Type (say Mail ) > 4. Attachment is Uploaded to the Mail Document type > 5. Sorting Depa. Group gets to view all the Mail Documents in /pending folder > > Thanks in advance for some code samples. > > Thanks and Regards, > Balajee > _______________________________________________ > ECM mailing list > [email protected] > http://lists.nuxeo.com/mailman/listinfo/ecm > _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
