How do you measure the progress of a web service call?

后端 未结 6 832
遇见更好的自我
遇见更好的自我 2020-12-20 18:46

I have an ASP.NET web service which does some heavy lifting, like say,some file operations, or generating Excel Sheets from a bunch of crystal reports. I don\'t want to be b

6条回答
  •  春和景丽
    2020-12-20 19:43

    Easiest way would be to have the Web Service update a field on a database with the progress of the call, and then create a Web Service that queries that field and returns the value.

提交回复
热议问题