Tagged Questions
The asynchronous-wcf-call tag has no wiki summary.
3
votes
1answer
279 views
Do WCF 3.5 REST endpoints call associated methods asynchronously?
When a WCF 3.5 REST endpoint (via WebServiceHost) handles a URI request, does it invoke the associated procedure asynchronously?
Thanks,
Scott
1
vote
1answer
103 views
Asynchronous WCF service calls from a Windows Service
I have written a windows service that utilises asynchronous WCF service calls.
Upon testing, it seems that the method on the service executes perfectly but the callback to my windows service itself ...
1
vote
2answers
143 views
Web service mass update
Is there a compelling reason to offer "batch update" version of update methods in a .NET web service?
Is there a considerable advantage over making multiple calls, asynchronous or synchronous, over ...
1
vote
1answer
1k views
Exception during multiple asynchronous calls to WCF (The message could not be processed…)
I am getting a "The message could not be processed..." error from a WCF client. Please help, it's killing me.
I have a test win app that goes through a for loop to kick of x number of asynchronous ...
1
vote
1answer
1k views
What is the difference between marking a wcf method with [OperationContract(IsOneWay = true)] attribute and checking the generate asynchronous operations checkbox when adding a service reference?
What is the difference between marking a wcf method with
[OperationContract(IsOneWay = true)]
attribute and checking the generate asynchronous operations checkbox when adding a service reference?
...
1
vote
4answers
1k views
Async call for WCF service hosted in windows service
I have hosted a WCF service in windows service. I have console app for which I added a WCF service reference and generated Client for it.
I can make Sync call to the service,but Async call doesn't ...
0
votes
0answers
23 views
What are the best practices for asynchronous web service calls that originate from click events? [closed]
I have a data grid in which the rows generate asynchronous web service calls when they are clicked.
The data returned from the web service is then used to populate other controls. If a user clicks ...
0
votes
1answer
80 views
WCF Asynchronous Call - Exception at eventhandler
WCF Asynchronous Call - Exception at eventhandler
I am making Asynchronous call to WCF method with eventhandler. I am getting an error at 'EventAddCallback' event and 'e.Error' shows the following ...
0
votes
1answer
57 views
Calling a WCF service in loop from Silverlight, return value in asynch handler is always the same
My colleague has the following problem:
The Silverlight application has a list of IDs and makes a WCF service call for each of them to find the object matching that ID. The matching object is then ...
0
votes
1answer
119 views
Can you do asynchronous communications with Java and REST web services?
Can you do asynchronous communications with Java on a client that is consuming a REST web service that sometimes takes several minutes to return a value?
I think not, after reviewing the below. C# ...
0
votes
1answer
203 views
Max concurrent sessions for WCF using IIS and Asynch methods - releasing resources
I am calling a WCF service from a form. Service is hosted in IIS. The service with the following attributes: InstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple
I have set the ...
0
votes
1answer
113 views
Notify WCF Service to cancel the currently executing operation and return remaining data.
I have this client application that sends thousands of items for deletion to my wcf service. Since the data is sent in bulk, even if I cancel the operation (with progress bar), all items are deleted. ...
0
votes
1answer
372 views
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 ...
0
votes
1answer
529 views
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 ...
0
votes
1answer
1k views
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 ...
0
votes
3answers
928 views
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 ...
0
votes
2answers
750 views
Async End<Method> 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 ...
0
votes
2answers
2k views
Abort Asynchronous Web Service Call and redirect to another URL (ASP.NET Ajax)
In my webapp, I have a list of links generated from code-behind and bound to a repeater control. Clicking on a link opens a popup window, where, along with displaying some data, an asynchronous call ...
0
votes
2answers
297 views
Dropping outdated WCF responses in Silverlight
In Silverlight I got the following problem. If you fire multiple requests to the web service, the responses might not return in an ordered sequence. Meaning if the first request takes longer than the ...
0
votes
1answer
176 views
Error when calling the service in async mode
Stackoverflow is definetly the fastest forum so after posting this question in the WCF forum I decided to come here.
I have a wcf service which returns a dictionary (IDictionary) and that works just ...