We have some reports that need to be accessed from the web. Currently we have a printing framework that creates a PDF on disk and we then read it using an ADODB.Stream object, and then send this to the browser.
Since VPE can write to memory streams, I'm trying to figure out if this is possible to do without writing anything to disk.
We call VPE from our framework which is written in Visual DataFlex, which is in turn called from ASP, so I'm pretty sure I need to do a MemCopy manually at some point. Or, is it possible to get a reference of the ADODB and give it to VPE for the streaming, or vice versa?
Any ideas how this might be possible?