私はスタック オーバーフローを経験し、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 に一致するベース アドレスが見つかりませんでした。登録されているベース アドレス スキームは [] です。
注:ベースアドレスを使用して上記のコードを変更しました。