web-dev-qa-db-ja.com

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

私はスタックオーバーフローを経験し、SSLとWebHttpBindingについて オンラインチュートリアル に従いました。

そこに記載されているのと同じエラーが返されます。以下に示すように、古いWeb構成に戻しました。 httpsサイトは正常に機能しており、新しいポートを開かなくても済むように、サイトの一部としてWCFを追加しました。

エラーが発生したときに、次のようなものに到達しようとしています。

https://localhost/_vti_bin/TestingSQL/sample.svc/mex

<?xml version="1.0"?>
<configuration>
  <system.serviceModel>
<services>
  <service name="SharePointBits.Samples.WCFService.SampleService" behaviorConfiguration="SharePointBits.Samples.WCFService.SampleServiceBehavior">
<Host> 
<baseAddresses> 
            <add baseAddress="https://testsite/_vti_bin/TestingSQL/Sample.svc"/> 
        </baseAddresses> 
    </Host>

    <endpoint address="https://localhost/_vti_bin/TestingSQL/Sample.svc" binding="wsHttpBinding" contract="SharePointBits.Samples.WCFService.ISampleService" 
bindingConfiguration="wsHttpBindingEndpointBinding">
          <identity>
            <dns value="localhost"/>
      </identity>
  </endpoint>
  <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
  </service>
</services>
<bindings>
  <wsHttpBinding>
    <binding name="wsHttpBinding">
      <security mode="Transport">
        <transport clientCredentialType="None"/>
      </security>
    </binding>
  </wsHttpBinding>
</bindings>
<behaviors>
  <serviceBehaviors>
    <behavior name="SharePointBits.Samples.WCFService.SampleServiceBehavior">
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpsGetEnabled="true"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
    <!--<behavior name="">-->
      <!--<serviceMetadata httpGetEnabled="true" />-->
    <!--</behavior>-->
  </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>'

Webアドレスを追加した後、新しいエラーが発生します。

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

両方の方法を試しましたが、どちらにもエラーがあります。

絶対アドレスをmetadatabindingに追加すると、次のエラーが発生します。

ServiceMetadataBehaviorのHttpsGetEnabledプロパティはtrueに設定されており、HttpsGetUrlプロパティは相対アドレスですが、httpsベースアドレスはありません。 httpsベースアドレスを指定するか、HttpsGetUrlを絶対アドレスに設定します。

ベースアドレスを使用すると、次のエラーが発生します。

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

:ベースアドレスを使用して上記のコードを変更しました。

9
tang fire

WCFに相対アドレスであると思わせるアドレスを持つMEXエンドポイントがありますが、ベースアドレスを指定していません。たとえば、MEXエンドポイントを次のように変更します。

<endpoint address="https://testsite/_vti_bin/TestingSQL/mex" 
          binding="mexHttpsBinding" 
          contract="IMetadataExchange"/>

それか、 BaseAddress を指定して、エンドポイントで使用します。

さらに、 serviceMetaData 要素、具体的にはhttpsGetUrlを微調整することもできます。

9
Jeroen