Questions tagged [asynchronous-wcf-call]
36 questions
0
votes
1 answer
Asynchronous WCF Query Final step
I am trying to learn how to implement an asynchronous pattern to query multiple wcf services concurrently, but do not know how to check that all concurrent calls are complete. I have a class that executes the asynchronous operations and then adds to…

Sean Thoman
- 7,429
- 6
- 56
- 103
0
votes
1 answer
Asynchronous web service call returning null (called from ASP.NET asynchronous page)
I am consuming a 3rd-party web service which has been implemented in WCF.
My consumer code resides on an ASP.NET asynchronous page.
Problem is, sometimes the BeginCallWebService() method is returning null. Shouldn't it always return an IAsyncResult…

frankadelic
- 20,543
- 37
- 111
- 164
0
votes
1 answer
Async Web Service call from Silverlight 3
I have a question regarding the sequencing of events in the scenario where you are calling a wcf service from silverlight 3 and updating the ui on a seperate thread. Basically, I would like to know whether what I am doing is correct... Sample is as…

Shawn
- 1
- 1
0
votes
3 answers
Asynchronous Web Service Design Patterns
When writing a Silverlight app hooked up to a WCF Web Service, the only option we are presented with in using the Web Service is to make asynchronous calls to the WS interface.
i.e.
WebService client = new…

Erik Kerber
- 5,646
- 7
- 38
- 56
0
votes
2 answers
Async End not called in WCF
I have the following situation: My WCF service allows a client to register to wait for some event. The waiting is asynchronous on the service side, that is, the waiter is registered and when the process is finished, the waiter is notified. At the…

Anteru
- 19,042
- 12
- 77
- 121
0
votes
3 answers
c# async calls UI not responding
This is my requirement:
On a button click I need to get the data from database and populate in a datagridview, for which I'm using a function. As the retrieval may take a long time and I want to use the UI meanwhile, I want this function to run in a…

Laya
- 59
- 1
- 1
- 11