web-dev-qa-db-ja.com

WCFのmexバインディングエラー

VSTS 2008 + C#+ .NET3.0を使用しています。セルフホストのWCFサービスを使用しています。次のステートメントを実行すると、次の「バインディングが見つかりません」エラーが発生します。 app.configファイル全体を投稿しましたが、何が問題なのですか?

ServiceHost Host = new ServiceHost(typeof(MyWCFService));

エラーメッセージ:

バインディングMetadataExchangeHttpBindingを持つエンドポイントのスキームhttpに一致するベースアドレスが見つかりませんでした。登録されているベースアドレススキームは[https]です。

完全なapp.config:

<?xml version="1.0"?>
<configuration>
  <system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="MyBinding"
            closeTimeout="00:00:10"
            openTimeout="00:00:20"
            receiveTimeout="00:00:30"
            sendTimeout="00:00:40"
            bypassProxyOnLocal="false"
            transactionFlow="false"
            hostNameComparisonMode="WeakWildcard"
            maxReceivedMessageSize="100000000"
            messageEncoding="Mtom"
            proxyAddress="http://foo/bar"
            textEncoding="utf-16"
            useDefaultWebProxy="false">
          <reliableSession ordered="false"
               inactivityTimeout="00:02:00"
               enabled="true" />
          <security mode="Transport">
            <transport clientCredentialType="Digest"
               proxyCredentialType="None"
               realm="someRealm" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <services>
      <service name="MyWCFService"
                behaviorConfiguration="mexServiceBehavior">
        <Host>
          <baseAddresses>
            <add baseAddress="https://localhost:9090/MyService"/>
          </baseAddresses>
        </Host>
        <endpoint address="" binding="wsHttpBinding" bindingConfiguration="MyBinding" contract="IMyService"/>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="mexServiceBehavior">
          <serviceMetadata httpGetEnabled="True"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
16
George2

サービスのベースアドレスは「HTTPS://」を定義しますが、mexアドレスは「HTTP」です。

サービスでhttps://を使用する場合は、mexHttpsBindingも使用する必要があります。

<services>
    <service name="MyWCFService" behaviorConfiguration="mexServiceBehavior">
        <Host>
          <baseAddresses>
            <add baseAddress="https://localhost:9090/MyService"/>
          </baseAddresses>
        </Host>
        <endpoint address="" 
                binding="wsHttpBinding" 
                bindingConfiguration="MyBinding" 
                contract="IMyService" 
        />
        <endpoint address="mex" 
                binding="mexHttpsBinding" 
                contract="IMetadataExchange" 
        />
    </service>
</services>

マーク

48
marc_s

ダブルスコアに行くことはできますか? :)

WS-Httpを使用しているため、HTTPSプロトコルにバインドしているため、正しいMEXバインディングを使用する必要があります。

<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
13
blowdart

Marc_sanswer のコメントで質問しました

Httpとhttpsの両方のIMetadataExchangeを別々のエンドポイントとして使用することは可能ですか?

marc_sが回答しました

http://用に2番目のベースアドレスを定義し、それをhttpmexエンドポイントに使用できるはずです。

したがって、解決策は、次のような同じaddress = "mex"とdifferentバインディングを使用して複数のエンドポイントを宣言することです。

<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />  
<endpoint contract="IMetadataExchange" binding="mexHttpsBinding" address="mex"/>

最近、テストでMEXを有効にし、ライブで無効にするために使用できる構成スイッチを1つ持つ方が簡単であることがわかりました。

http://msdn.Microsoft.com/en-us/library/aa395224.aspx から

ServiceHostFactoryクラスを使用して、インターネットインフォメーションサービスのServiceHostから派生したカスタムを作成することができます(この動作がサービスの構成ファイルに明示的に追加されていない場合でも、ServiceMetadataBehaviorを追加するIISカスタムServiceHost(メタデータ発行を有効にします)。

メタデータ発行を一度有効にする命令型コードを記述してから、そのコードを複数の異なるサービスで再利用します。これは、ServiceHostから派生し、ApplyConfiguration()メソッドをオーバーライドしてメタデータ発行動作を強制的に追加する、新しいクラスを作成することで実現されます。

カスタムサービスホストMSDN記事 のサンプルコード

//Add a metadata endpoint at each base address
//using the "/mex" addressing convention
foreach (Uri baseAddress in this.BaseAddresses)
{
    if (baseAddress.Scheme == Uri.UriSchemeHttp)
    {
        mexBehavior.HttpGetEnabled = true;
        this.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName,
                                MetadataExchangeBindings.CreateMexHttpBinding(),
                                "mex");
    }
    else if (baseAddress.Scheme == Uri.UriSchemeHttps)
    {
        mexBehavior.HttpsGetEnabled = true;
        this.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName,
                                MetadataExchangeBindings.CreateMexHttpsBinding(),
                                "mex");
    }
    else if (baseAddress.Scheme == Uri.UriSchemeNetPipe)
    {
        this.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName,
                                MetadataExchangeBindings.CreateMexNamedPipeBinding(),
                                "mex");
    }
    else if (baseAddress.Scheme == Uri.UriSchemeNetTcp)
    {
        this.AddServiceEndpoint(ServiceMetadataBehavior.MexContractName,
                                MetadataExchangeBindings.CreateMexTcpBinding(),
                                "mex");
    }
}