9

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

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

4

1 に答える 1

9

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

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

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

さらに、 serviceMetaData要素、具体的には httpsGetUrlを微調整したい場合があります。

于 2012-09-23T15:45:23.873 に答える