开发者

Making WCF service async using MSMQ bindings

开发者 https://www.devze.com 2023-03-13 21:04 出处:网络
has anybody experience with async WCF endpoints? I am trying to understand if using the MS开发者_如何学运维MQ bindings options I could have a setup in which the client knows to which queue the messag

has anybody experience with async WCF endpoints?

I am trying to understand if using the MS开发者_如何学运维MQ bindings options I could have a setup in which the client knows to which queue the messages have to be put and would work transparently aslo if the wcf service (eventually hosted in IIS) is offline or does not responde.

I would really like to get this setup because in this way when the app server is back online (one of the many application servers we would have for our distributed application), it would process all incoming messages in the queue and elaborate.

I am more thinking about those operations which make sense to have delayed, like messaging management (sending emails out), logging services (write log entries to database, event log or send via email) and similar kind of backend processes.

My other option would be to use TIBCO business works and ems but trying to understand what is better and if simple WCF would work sync or async simply changing the binding from let's say netTCP to MSMQ....

Thanks!


You have to differentiate between async and queued.

You can do async messaging with, say, NetTcpBinding using client based async invocation, async service execution, OneWay messaging and duplex or simply OneWay messaging.

However, as you say, queues bring the additional benefits of: resilience, load levelling and, depending on the version of MSMQ, scalablility.

The main two issues you have using queues are:

  1. All messaging must be OneWay so if the client needs to have a way of knowing if processing was successful you have to design that into your solution
  2. Queue failure semantics are very different from standard service failures. Dead letter queues and poison message queues need to be checked for unprocessed messages - again something you need to design into your solution


If you want equivalent to Tibco EMS then the only similar feature out-of-the box supported by WCF is MSMQ. If you already have Tibco EMS infrastructure but you still want to use WCF you can combine these two because Tibco provides EMS binding for WCF (I have never tested it but I saw it on customer's download page).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号