Hello,
Our custom isapi is handling PROPFIND requests from our clients. We would like to decrease response time. The whole response might take a lot of time when folder that we are sending PROPFIND request for contains a lot of files/folders. Currently we send response through ServerSupportFunction in a response vector which combines info about all files/folders (using HSE_REQ_VECTOR_SEND parameter).
We think it might be possible to do this by using WriteClient function and sending data to client - one file (or folder) at a time, perhaps by calling writeclient multiple times.
Does anyone know (and could provide a code sample which shows) how this is done?
Thank you so much.