在IIS7中托管的WCF MSMQ在我手动命中服务之前不会自动检索消息

时间:2013-07-30 16:37:20

标签: c# wcf iis-7 msmq was

我看过几篇与此相关的帖子,但我没有找到问题的答案

所以我有一个客户端使用WCF netmsmq绑定向MSMQ发送消息。这很好。

我的本​​地IIS7(Windows 7)中托管了一个公开WCF MSMQ端点的网站。

当我从客户端发布消息时,消息没有被消耗,它们只是永远保留在队列中 UNTIL ,我手动浏览服务,之后消息被发送到托管的服务在IIS中

那么我需要做什么才能通过IIS中托管的WCF服务自动使用消息?

注意:我刚刚注意到在IIS 中调用我的Web应用程序中托管的任何WCF服务后唤醒服务或其他内容并突然消耗了队列消息......

客户端配置

  <system.serviceModel>
    <client>
      <endpoint name="Service.ServiceContracts.QueueLoggingService NET MSMQ"
                address="net.msmq://localhost/private/Service.WebHost/QueueLoggingService.svc"
                binding="netMsmqBinding"
                contract="Service.ServiceContracts.IQueueLoggingService">
      </endpoint>
    </client>
    <bindings>
      <netMsmqBinding>
        <binding exactlyOnce="true" durable="true" maxRetryCycles="15" receiveRetryCount="15">
          <security mode="None">
            <message clientCredentialType="None" />
            <transport msmqAuthenticationMode="None" />
          </security>
        </binding>
      </netMsmqBinding>
    </bindings>
  </system.serviceModel>

服务器配置

  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true">
    </serviceHostingEnvironment>
    <services>
      <service name="Service.ServiceImplementations.QueueLoggingService">
        <endpoint 
                  address="net.msmq://localhost/private/Service.WebHost/QueueLoggingService.svc"
                  binding="netMsmqBinding"
                  contract="Service.ServiceContracts.IQueueLoggingService">
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <bindings>
      <netMsmqBinding>
        <binding exactlyOnce="true" durable="true" maxRetryCycles="15" receiveRetryCount="15">
          <security mode="None">
            <message clientCredentialType="None" />
            <transport msmqAuthenticationMode="None" />
          </security>
        </binding>
      </netMsmqBinding>
    </bindings>
  </system.serviceModel>

我尝试过的事情:

  • 消息队列服务正在运行
  • 消息队列触发服务正在运行
  • 运行Net.Msmq侦听器适配器服务
  • Net.Pipe侦听器适配器服务正在运行
  • 运行Net.Tcp侦听器适配器服务
  • 运行Net.Tcp端口共享服务服务
  • 运行分布式事务处理协调器服务
  • 已安装MSMQ Active Directory域服务集成
  • 已安装MSMQ HTTP支持
  • 已安装MSMQ触发器
  • 已安装MSMQ多播支持
  • 已安装WCF非HTTP激活
  • 已安装WCF HTTP激活
  • AppPool配置为自动启动
  • 我的默认网站包含以下配置:

            <application path="/Service.WebHost" applicationPool="MyGenericAppPool" enabledProtocols="net.msmq, http">
                <virtualDirectory path="/" physicalPath="C:\Some Path\Service.WebHost" />
            </application>
    
            <bindings>
                <binding protocol="http" bindingInformation="*:80:" />
                <binding protocol="net.tcp" bindingInformation="808:*" />
                <binding protocol="net.pipe" bindingInformation="*" />
                <binding protocol="net.msmq" bindingInformation="localhost" />
                <binding protocol="msmq.formatname" bindingInformation="localhost" />
            </bindings>
    

2 个答案:

答案 0 :(得分:1)

自动启动功能由AppFabric提供,因此您必须安装它。然后,您将能够使用与此类似的命令行,以便自动启动您的WAS应用程序:

  

appcmd.exe set app /app.name:YourApplication / serviceAutoStartEnabled:True / serviceAutoStartMode:All

答案 1 :(得分:0)

好的

这家伙为我节省了数小时的时间:

Paul Bahler @paulbahler

事实证明,即使将AppPool设置为自动启动......也不是显而易见......

所以这个人建议我安装App Fabric tools,然后将应用程序配置为自动启动并使其工作