JL.
JL.

Reputation: 81342

Possible to flush results back through an asmx web service?

I have an asmx web service that performs 5 tasks.

It is at all possible to send back a result during the call, so that when 1 task completes, even though the web service is still running, the client can get some results back before the whole web service method completes all its work?

Thanks

Upvotes: 0

Views: 95

Answers (1)

John Saunders
John Saunders

Reputation: 161821

No, it's not possible. ASMX web services use a request/response mechanism. One request - one response.

Upvotes: 1

Related Questions