AMQP AmqpBinding IIS/WAS problems?

喜你入骨 提交于 2019-12-23 05:26:12

问题


The setup at the current employer has one set of back office functions on a Java platform and another group of functions on two separate .NET-based platforms. There is no overall architect.

The Java guys decided to go for Apache QPID and AMQP for messaging, presumably amongst themselves, with the .NET systems and other external systems.

.NET architecture involves WCF services hosted in IIS/WAS and Windows Server AppFabric.

Does anyone have any experience of AmqpBinding and IIS/WAS, if there are any possible pitfalls?


回答1:


I think your first problem will be IIS/WAS/AppFabric because non HTTP services hosted in WAS have additional requirements for infrastructure which consists of additional process (listener) running usually as as a windows service and communicating with worker process. This process is responsible for receiving and sending messages and allows service activation in WAS. I don't think that the QPID project has the listener process already created. You will most probably have to implement the listener yourselves - check this sample for custom UDP activator.



来源:https://stackoverflow.com/questions/10191448/amqp-amqpbinding-iis-was-problems

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!