0

基本上我想创建这个绑定来监听 azure 服务总线队列:

<services>
  <service name="myServiceName">
    <endpoint address="sb://****.servicebus.windows.net"
              listenUri="sb://****.servicebus.windows.net"
              binding="netMessagingBinding"
              bindingConfiguration="netMessagingBinding"
              behaviorConfiguration="myConfiguration"
              name="myServiceEndpoint"
              contract="****" />
  </service>

我还需要知道如何在我的服务中使用它。

4

1 回答 1

0

查看您的服务主机文件 (.SVC),它可以包含对生成服务文件的工厂类的引用。更多信息在这里:http: //msdn.microsoft.com/en-us/library/aa967286.aspx

通过提供您自己的工厂,您可以通过 CreateServiceHost 方法覆盖服务类的生成。这将使您能够更好地控制服务类的创建方式。您可以注入自己的 URL,l 等。

高温高压

于 2013-03-20T17:54:13.387 回答