Publishing a document locally

The document is generated locally by using the lib files copied into the project. The publishSynch method publishes the document asynchronously. The document generation is finished when this method returns. The second argument specifies the limit to the query results, similar to the Preview query limit preference from the user interface. Use 0 for a full document generation.
IDocumentgenerator generator = new LocalDocumentGenerator( new RPEEngine());
EngineStatus result = generator.publishSynch(docspec, 0);

The status result can be checked to verify that the document generation is successful. When a document generations successfully, the status is finished.


Feedback