0

編集:詳細:

私の問題に関するもう少しの情報:

Service Bus を使用して非同期イベントを WCF サービスに送信します。この構成のクライアントがあります:

<client>
  <endpoint address="sb://[Server].[Domain]/NameSpace/eventqueue"
    behaviorConfiguration="securityBehavior" binding="netMessagingBinding"
    bindingConfiguration="messagingBinding" contract="xxx.IEventQueueService"
    name="Subscriber" />
</client>

これは、独自のドメイン内の仮想サーバーであることに注意してください。

これは動作と bindingConfig です。

<behavior name="securityBehavior">
          <transportClientEndpointBehavior>
            <tokenProvider>
              <windowsAuthentication>
                <stsUris>
                  <stsUri value="https://[Server].[Domain]:9355/[Namespace]" />
                </stsUris>
              </windowsAuthentication>
            </tokenProvider>
          </transportClientEndpointBehavior>
        </behavior>

      <netMessagingBinding>
        <binding name="messagingBinding" closeTimeout="00:03:00" openTimeout="00:03:00" receiveTimeout="00:03:00" sendTimeout="00:03:00" sessionIdleTimeout="00:01:00" prefetchCount="-1">
          <transportSettings batchFlushInterval="00:00:01" />
        </binding>
      </netMessagingBinding>

そして、私の WCF サービスは同じ構成を使用しています。

<services>
  <service name="xxx.EventQueueService">
    <endpoint address="sb://[SERVER].[DOMAIN]/Namespace/eventqueue"
      behaviorConfiguration="securityBehavior" binding="netMessagingBinding"
      bindingConfiguration="messagingBinding" name="EventQueueClientService"
      contract="xxx.IEventQueueService" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8732/xxx.ExternalServices/EventQueueService" />
      </baseAddresses>
    </host>
  </service>

</services>

開発用コンピューターでプロジェクトを実行すると、これはうまく機能します。しかし今、サービスバスと同じように、それをサーバーにデプロイしたいと考えています。そして、それは失敗します...

古い編集:わかりました、この Web ページを見つけました: http://msdn.microsoft.com/en-us/library/microsoft.servicebus.configuration.windowselement.aspx

ただし、次の 2 つのオプションは機能しません。

<windowsAuthentication userName="xxx" password="xxx" domain="xxx">

System.ArgumentNullException: Value cannot be null.
Parameter name: s
   at System.Convert.FromBase64String(String s)
   at Microsoft.ServiceBus.SharedSecretTokenProvider.DecodeSecret(String issuerSecret)
   at Microsoft.ServiceBus.Description.SharedSecretCredential.CreateTokenProvider()
   at Microsoft.ServiceBus.Description.TransportClientCredentialBase.get_TokenProvider()
   at Microsoft.ServiceBus.TransportClientEndpointBehavior.get_TokenProvider()
   at Microsoft.ServiceBus.Messaging.NetMessagingTransportBindingElement.CreateMessagingFactorySettings(BindingContext context)
   at Microsoft.ServiceBus.Messaging.Channels.ServiceBusChannelListener`1..ctor(BindingContext context, NetMessagingTransportBindingElement transport)
   at Microsoft.ServiceBus.Messaging.NetMessagingTransportBindingElement.BuildChannelListener[TChannel](BindingContext context)
   at System.ServiceModel.Channels.Binding.BuildChannelListener[TChannel](Uri listenUriBaseAddress, String listenUriRelativeAddress, ListenUriMode listenUriMode, BindingParameterCollection parameters)
   at System.ServiceModel.Description.DispatcherBuilder.MaybeCreateListener(Boolean actuallyCreate, Type[] supportedChannels, Binding binding, BindingParameterCollection parameters, Uri listenUriBaseAddress, String listenUriRelativeAddress, ListenUriMode listenUriMode, ServiceThrottle throttle, IChannelListener& result, Boolean supportContextSession)
   at System.ServiceModel.Description.DispatcherBuilder.BuildChannelListener(StuffPerListenUriInfo stuff, ServiceHostBase serviceHost, Uri listenUri, ListenUriMode listenUriMode, Boolean supportContextSession, IChannelListener& result)
   at System.ServiceModel.Description.DispatcherBuilder.InitializeServiceHost(ServiceDescription description, ServiceHostBase serviceHost)
   at System.ServiceModel.ServiceHostBase.InitializeRuntime()
   at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at Microsoft.Tools.SvcHost.ServiceHostHelper.OpenService(ServiceInfo info)

<windowsAuthentication>

<userName value="xxx">

=> プロパティ「userName」は ConfigurationElement ではありません

4

1 に答える 1

1

この問題の解決策を見つけました。

アプリケーションをデプロイするときは、IISPool の所有者 (または偽装されたユーザー) が Service Bus 名前空間の ManagedUsers のメンバーでもあることを確認してください。Get-SBNamespace -Name で確認できます。

名前空間へのユーザーの追加:Set-SBNamespace -Name -ManageUsers

于 2013-02-12T14:14:13.330 に答える