0
votes
1answer
21 views

Call WCF service asynchronously from Web API

How could I call call WCF Service asychronously from asp.net Web API. I do not want to use asyc and await keywork with my Web API function. Is there any other way to implement same solutions.
0
votes
1answer
44 views

Best way to make multiple asyn calls from a REST Service to external soap webservices

I have a WCF Service which inturn call 4 soap webservices (total response time for 4 services are more than a minute) for a single transaction and finally it will log the transaction status in the SQL ...
1
vote
0answers
20 views

WCF Async method works on Windows 7 host, but throws signature Exception on XP machine

My code (target framework 4.0, x86 architecture) works on several Windows 7 machines (both client and server) but throws an Invalid Async Begin method signature Exception on Windows Xp (same .NET ...
1
vote
0answers
40 views

Is it possible to return result asynchronously in WCF server (similar to MVC AsyncManager.OutstandingOperations.Increment)

I am creating a WCF service that needs to call few other services inside. If I do it simple way then the execution time will be a sum of all of the calls to other service (plus some overhead). What I ...
0
votes
1answer
54 views

WCF Async call that return void and is OneWay

I use WCF to async communicate between 2 processes. till now I implemented the IAsyncResult pattern, and did it by having 3 methods: BeginOperation - client.BeginOperation, when service receive it ...
0
votes
0answers
40 views

Asynchronous WCF service not working

I have this service: [OperationContract(AsyncPattern = true)] public IAsyncResult BeginSensorResult(string ip, string command, AsyncCallback cb, object state) { return new ...
0
votes
0answers
38 views

How to Close/Dispose an Async WCF Proxy

There are plenty of "how to" examples for using async WCF proxies, such as here and here. But none of them explain how and when to close the proxy! It is unbelievable to have no explanation(s) for ...
1
vote
1answer
36 views

Async WCF: One Request => n Results

Is it poosible with WCF to do one async request and get 0 to n responses? Example: when requesting a list of object i want to call wcfservice.GetObjects() and as response i would expect on response ...
0
votes
2answers
90 views

Calling Async WCF service at Application_Exit

I have the following code.. Private Sub Application_Exit(ByVal o As Object, ByVal e As EventArgs) Handles Me.Exit If MainPage.ModeOfOperation = "PROPOSALMODIFICATION" Then ...
2
votes
3answers
109 views

Execute web service method and return immediately

C# ASP.NET 3.5 Is it possible to "fire and forget" a method in a web service that is not asynchronous or one-way? There is a method that returns a value (after some processing), which I don't need. ...
0
votes
1answer
112 views

WCF Synchronous vs Asynchronous

I have been looking at MSDN and codeproject, but I am still a bit confused. Synchronous Service vs an Asynchronous service. I have a WCF service end point. This service has a 2way SSL applied to its ...
1
vote
0answers
44 views

Synchronization context in asynchronous WCF per call service

I have a WCF service, for example: public interface IService { [OperationContract(AsyncPattern = true)] IAsyncResult BeginGet(Request productsRequest, AsyncCallback callback, object state); ...
0
votes
1answer
97 views

Asynchronous controller and ASP.NET thread handling

I have a web application with web layer is a ASP.NET MVC 3 web application, service layer is WCF, database is MSSQL In this article: ...
0
votes
2answers
301 views

ASP.NET (VB.NET 4.5) Calling Async WCF Method

I have been reading for days, and I can't quite figure out what I am supposed to do here. I am actually a C# developer and programming in VB.NET can be a little confusing at times. That aside, I am ...
1
vote
1answer
51 views

What thread pool wcf uses when usesynchronizationcontext=false

I have a wcf client I generated using SVCUTIL with the /async flag. The server is syncronic, but I only use the Begin/End methods in my client. Also, I added the attribute ...
0
votes
2answers
98 views

Make an Async/Await db call within a Task?

We have a WCF service that is processing incoming messages in the following manner: public bool ProcessMessage(string message) { var returnValue = GetReturnValue(); Task.Run(() => { ...
1
vote
0answers
24 views

Asynchronous Service Operation: No Blocking

I'm trying to have a service operation achieve the following goals: Does not allow the thread it is on to block "waits" for the input from another service before returning The first of these two ...
2
votes
0answers
51 views

Blocked Worker Threads in WCF

In Juval Lowy's text "Programming WCF Services", he writes: ...when the client invokes a method of the form Begin() with AsyncPattern set to true, this tells WCF not to try to directly invoke a ...
0
votes
1answer
41 views

closing WCF client in async operation

I have the following code, which invokes WCF service asynchronously: var client = new MyServiceClient(); Task.Factory.FromAsync(client.BeginDo, client.EndDo, request, null).ContinueWith(t => { ...
0
votes
2answers
99 views

Silverlight: Returning value from synchronous method using Rx

I am writing a simple Silverlight application and WCF Service. I want to create a synchronous method that return a value. The method itself, call an asynchronous method from WCF Services. After I call ...
0
votes
0answers
86 views

c# wcf async requests delay

I have a WCF client written in C#, contacting a server written in Java. The server is someone else's code and I have no control over it. The client has a timer that sends a request to the server ...
0
votes
1answer
120 views

WCF Service Causes SQL Deadlock Error

I have been beating my head against the wall with this for the last couple days and I can’t seem to come up with a good solution. I have a WCF service that acts as the only entry point with all of ...
0
votes
1answer
136 views

How to wait for asynchronous wcf calls to finish to use the results?

I need to make two wcf calls to buildup a model [SecurityOperationBehavior] public Response1 Func1(Request1 req) { } [SecurityOperationBehavior] public Response2 Func2(Request2 req) { } I ...
0
votes
2answers
240 views

Synchronous wrapper for WCF asynchronous calls

We are calling WCF services asyncronously. public partial class ServiceClient : System.ServiceModel.ClientBase<MyService>, MyService { ...... } ServiceClient _serviceclient; void ...
0
votes
2answers
256 views

Returning a value from async callback in WCF

My WPF application with the MVVM pattern shall basically perform the following: Button view binds to a command in the view model. --> Check! Command in view model asynchronously queries a webservice ...
1
vote
1answer
120 views

How do I create a single background thread that awaits the completion of multiple async WCF calls?

My scenario consists of a .NET 4.0 WCF service, called by a .NET 4.5 client wrapped in a class library. The client calls the WCF service asynchronously, and displays any data it returns. That code is ...
4
votes
3answers
226 views

How to call asynchronously WCF Service method with WebInvokeAttribute?

I have WCF Service with this one method. That method has WebInvoke Attribute. How can I call it asynchronously? [WebInvoke(UriTemplate = "*", Method = "*")] public Message HandleRequest() { var ...
0
votes
1answer
81 views

How to implement an async wcf client for a synchronous service

Is there a way to create an async client for a synchronous WCF service without adding a service reference? This is for a .NET 4 client.
0
votes
2answers
158 views

How to properly wait for WCF asynchrony

This is my first question on the boards. I am writing my first enterprise-worthy Silverlight (5) application, using WCF and the MVVM pattern. My problem is that I don't understand how to have the ...
0
votes
0answers
307 views

WCF using Async/Await - Channel blocked in Client

I'm working with .Net 4.5 and my services are written using Async and returning Task<>. When I call the service from the client I use await. When the service returns after the await it seems that ...
1
vote
1answer
96 views

Heard that WCF does not scale well with async methods?

I have read in various blogs that WCF has a scalability problem with servicing a large number of concurrent async requests for an async WCF method. Is this still true today in .Net 4.0 and IIS 7 ...
1
vote
1answer
486 views

How to mock WCF client using Moq?

In my project I am using: SL5+ MVVM+ Prism + WCF + Rx + Moq + Silverlight Unit Testing Framework. I am new to unit-testing and have recently started into DI, Patterns (MVVM) etc. Hence the following ...
1
vote
0answers
182 views

How To Catch Async Callback Exception in Silverlight

Is there any way to catch AsyncCallback exceptions in Silverlight? I'm getting this problem in a WCF Duplex communication async process and I have no idea why this is happening. Sender for this ...
1
vote
2answers
390 views

How to use BeginExecuteReader with an async WCF method

I am trying to use BeginExecuteReader method of ADO.Net in an asyn WCF method, but not able to get it. I have the following contract and service code. I cannot understand how do I fill in the details ...
2
votes
2answers
429 views

Calling WCF in async manner from ASP.Net will return worker thread to thread pool of ASP.Net?

I am trying to make my ASP.Net website more scalable, but not sure if the ASP.Net thread receiving the web request is returned to thread pool before the async call to WCF method completes Or this ...
2
votes
1answer
190 views

Calling WCF in async manner from client makes the WCF service also act in async manner?

When a WCF service is called in an async manner from a client, then we know that the client app is NOT blocked. But is the thread on the WCF side blocked while executing the async method call OR the ...
0
votes
0answers
89 views

WCF Transfer large files from server to client and then client to Server back

I am new to WCF and currently working on a DICOM project where we have to download large DICOM images(usually 100 MB - 2 GB) from the server and once the modified it in the client i have to upload it ...
0
votes
3answers
157 views

How to call multiple WCF methods in sequence without blocking the UI thread?

I have to call multiple WCF methods in sequence without blocking the UI thread. Each method have to be completed before the next method is called. I have setup my WCF service with svcutil so I have ...
2
votes
4answers
743 views

How to use Visual Studio - generated async WCF calls?

My OperationContract: public List<MessageDTO> GetMessages() { List<MessageDTO> messages = new List<MessageDTO>(); foreach (Message m in ...
1
vote
2answers
55 views

WCF Async working too long

I have wcf service with some debug method: public Result DebugMethod(TimeSpan time){ Thread.Sleep(time); return new Result { Code = new Random().Next()}; } I wanted to test performance ...
1
vote
1answer
214 views

Calling two async WCF service methods in one client method and wait in that method until calls return?

I need to call two operations from a WCF Service that we are consuming from a client. These two operations will be ideally called at the same time, as they both take a few seconds two complete. Once ...
0
votes
1answer
96 views

WCF duplex scenario - notifying server of client errors

In a client server WCF duplex scenario, what is the recommended way to let the server know that an error occurred on the client side? Let's say that the server notifies one of the clients that it ...
0
votes
1answer
83 views

Dependencies being disposed when using trying to run an asynchronous task in WCF with Autofac

I am currently working with a WCF service that is supposed to spawn a new task to be run asynchronously on a server (there are db queries etc that need to take place). It is possible (and very likely) ...
0
votes
0answers
109 views

WCF OneWay asynchronous call not executed

I'm using VS2008, .NET 3.5, a WCF service hosted by IIS, using wsHttpBinding, SessionMode.Required I call a oneway async method and then close the client. The method is not executed ! ...
1
vote
2answers
1k views

How to apply Task Async Pattern and WCF's ChannelFactory<TChannel>?

We have a robust WCF client built in 2008 on .NET 3.5 (now recompiled under .NET 4.0) that talks to our own WCF service over the net.tcp binding. The robust client uses ...
0
votes
1answer
113 views

ConcurrencyMode Multiple vs Async/Await

Suppose you have a WCF service with [ServiceBehavior( IncludeExceptionDetailInFaults = true, InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple, ...
2
votes
1answer
246 views

usage of async methods for webservice

I want to program a little Silverlight application where I have three DataGrids. Each Datagrid gets its data from a webservice using async methods. Now I want the first data grid to get the data from ...
2
votes
1answer
279 views

Async WCF client calls with custom headers: This OperationContextScope is being disposed out of order

I'm calling a WCF service from a WinRT app. The service requires that some headers are set for the authentication. The problem is that if I do multiple calls to the service simultaneously, I get the ...
0
votes
0answers
42 views

Add Service Reference with /tcv:Version35 (Async) in Visual Studio 2010

How do I get the "Add Service Reference" to run svcutil.exe with /tcv:Version35 I can't get the XXXAsync() and XXXCompleted event in my client proxy.
4
votes
1answer
208 views

Asynchronous WCF

I am trying to create a WCF service that supports asynchronous calls. I followed all samples and tutorials I could find, and all of them have the customary pattern of one synchronous method, and the ...

1 2 3 4 5 6