如何在wcf中使用MSMQ Binding从URL调用操作契约

时间:2012-06-20 12:50:26

标签: c# asp.net wcf msmq wcf-binding

我有一个带有MSMQ绑定的WCF服务,它工作正常。每当有任何消息进入MSMQ队列时。处理队列和消息从队列中删除。但它没有调用操作合同,我没有得到有关消息的信息。

有没有办法直接调用您的操作合同或是否有其他方式?我在WAS和MSMQ中托管wcf服务,以下是我的web.config设置。

<system.serviceModel>
  <bindings>
      <netMsmqBinding>
          <binding name="WCFQNonTransactional" exactlyOnce="false">
              <security mode="None"/>
          </binding>
      </netMsmqBinding>
  </bindings>
  <services>
      <service behaviorConfiguration="MyWCFService.MSMQReceiverServiceBehavior" name="MyWCFService.MSMQReceiverService">
          <endpoint address="http://localhost:90/MSMQReceiverService.svc"
                    binding="wsHttpBinding"
                    contract="MyWCFService.IMSMQReceiverService" name="mymsmq">
              <identity>
                  <dns value="localhost" />
              </identity>
          </endpoint>

          <endpoint address="net.msmq://localhost/private/Mywcfservice/msmqreceiverservice.svc"
                    binding="netMsmqBinding" bindingConfiguration="WCFQNonTransactional"
                    contract="MyWCFService.IMSMQReceiverService" />
      </service>
  </services>
  <behaviors>
      <serviceBehaviors>
          <behavior name="MyWCFService.MSMQReceiverServiceBehavior">
              <serviceMetadata httpGetEnabled="true"/>
              <serviceDebug includeExceptionDetailInFaults="false"/>
          </behavior>
      </serviceBehaviors>
  </behaviors>

1 个答案:

答案 0 :(得分:0)

如果未调用操作合同,则表示将消息从队列中取出时存在问题。应该为从队列中取出的每条消息调用您的操作代码。

首先,确保使用事务性队列,因为如果您没有任何错误将导致消息丢失。

其次,在客户端和服务器绑定上启用日记功能,您将能够跟踪消息。