C
Chuck Hartman
The client app that I am developing is calling a web service that may take a
long time to execute. I want to include a progress bar in my client that is
attempts to show the relative time left to complete the current task. I am
using the MSDN article by Matt Powell entitled "Adding a Progress Bar to
Your Web Service Client Application" as a basis for my solution.
The web services extension will keep track of how much of a given transfer
is complete. This assumes that the TransferSize variable in Matt's example
is known in advance. Matt seems to use the value, but never seems to set
its value. My question is, how to determine in advance what the total size
of the response to be transferred will be? Also, can this same technique be
used to show the progress of a large request as well? Thanks.
Chuck Hartman
long time to execute. I want to include a progress bar in my client that is
attempts to show the relative time left to complete the current task. I am
using the MSDN article by Matt Powell entitled "Adding a Progress Bar to
Your Web Service Client Application" as a basis for my solution.
The web services extension will keep track of how much of a given transfer
is complete. This assumes that the TransferSize variable in Matt's example
is known in advance. Matt seems to use the value, but never seems to set
its value. My question is, how to determine in advance what the total size
of the response to be transferred will be? Also, can this same technique be
used to show the progress of a large request as well? Thanks.
Chuck Hartman