I use a spider with Ethernet to post sensor data to my server.
I have a RESTful web service in my server.
I use
HttpHelper.CreateHttpPostRequest
to post data.
I want to know the time interval between sending and receiving.
Could I use
req.ResponseReceived += new HttpRequest.ResponseHandler(req_ResponseReceived);
to get a response time?
The time interval should be (response time/2)?
Thanks.