Is there a way to configure WCF to do guaranteed asynchronous calls (remotely - on different machine)? I.e. something you would implement using some MQ messaging mechanism before WCF era.
+2
A:
Re clarification (comment) - you can use MSMQ as a WCF channel ;-p using the NetMsmqBinding
and related bindings.
See here, for example - or for an MSDN document, here.
Well, you could enable the "Generate asynchronous operations" button in the IDE (or svcutil /async
) - and use the async methods. In reality, the sync methods usually call the async methods internally and block on the reply.
Is there some specific problem you are seeing?
Marc Gravell
2009-04-22 13:32:33
I was looking for something more reliable like the queues, e.g. when the server is temporarily down I want my calls to just queue and execute when it is up again.
Grzenio
2009-04-22 13:35:50
Ah... right; I'll edit
Marc Gravell
2009-04-22 13:41:14