AWS: line by line output?

Hi,I’m a starter on web services. I have a logging module, supporting line-wise reading (like LogReadFirst() and LogReadNext()) from the buffer. With the old HTTP-server the HSSend()-function in a loop does the job, even we have a big number of lines. What is the best way with AWS to do this job? Exists an engine callback to send data in little pieces? I don’t want to copy all data into a large buffer, even it seems to crash for a big buffer (64kB). I tried to use the “RpFile”-keyword and the pseude file system, but technical support told me its not supported. Thanx!

The existing engine chunks the whole frame on 4K boundaries and then sends them one at a time. When one is finished it points to the following until all are processed.