Hi,
I am having HTTP client created using C++ REST SDK. I don't see any way to get progress info on ongoing WEBDAV put and get .
Please suggest.
Regards
Prashant
Comments: I'm glad you were able to build and try it out! We debated back-and-forth how to deal with the upload/download issue. There seemed to be several possibilities: 1. Have one handler for both upload and download. You have to filter out the events you don't care about. 2. Have one handler, but pass in a bitmask for the events you want to see. 3. Have two distinct handlers. #1 seemed the simplest to explain, so that's what we prototyped. On the '0' issue, there wasn't a lot of discussion. It was an arbitrary choice to always give you something for each direction, even if it's just a 0. Maybe that was a mistake.
I am having HTTP client created using C++ REST SDK. I don't see any way to get progress info on ongoing WEBDAV put and get .
Please suggest.
Regards
Prashant
Comments: I'm glad you were able to build and try it out! We debated back-and-forth how to deal with the upload/download issue. There seemed to be several possibilities: 1. Have one handler for both upload and download. You have to filter out the events you don't care about. 2. Have one handler, but pass in a bitmask for the events you want to see. 3. Have two distinct handlers. #1 seemed the simplest to explain, so that's what we prototyped. On the '0' issue, there wasn't a lot of discussion. It was an arbitrary choice to always give you something for each direction, even if it's just a 0. Maybe that was a mistake.