Hello, I'm using SmartClient 10.0 Enterprise and my use case is: generate two or more csv export files, then zip and download the zip file.
I don't know if I could use the SmartClient export feature entirely server side, i.e.:
If yes, then how could I access the exported file as a stream to put it in a zip?
Using getExportObject ? Or using setExportTo ?
I don't know if I could use the SmartClient export feature entirely server side, i.e.:
Code:
DSRequest exportRequest = new DSRequest("MY_DS", DataSource.OP_FETCH, rpcManager); exportRequest.setExportAs("csv"); DSResponse exportResponse = exportRequest.execute();
Using getExportObject ? Or using setExportTo ?
Comment