3

次の web.config を WCF テスト クライアントに表示するには、どのような変更を加える必要があるかを知る必要があります。SSL、https プロトコルを呼び出す web.config を探しています。アプリケーションがメタデータ エラーなしで WCF テスト クライアントに表示されるようにしたいと考えています。ちなみに、mexHttpsBindingしてhttpGetEnabled="False"をなくしてみました。どちらも機能しませんでした。また、https エンドポイントを作成しようとしましたが、喜びはありません。

<compilation debug="true" targetFramework="4.0" />

<services>

  <service name="WcfService1_ssl.Service1" behaviorConfiguration="OhBehave">

    <endpoint address="" binding="basicHttpBinding" contract="WcfService1_ssl.IService1" bindingConfiguration="secureBinding" />

    <!-- VERIFY:  Verify address="mex" section is commented or deleted to avoid any mexHttpBinding. -->

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

  </service>

</services>

<behaviors>

  <serviceBehaviors>

    <behavior name="OhBehave">

      <dataContractSerializer maxItemsInObjectGraph="2147483646" />

      <serviceMetadata httpGetEnabled="False"  httpsGetEnabled="True" />

      <serviceDebug includeExceptionDetailInFaults="true" />

    </behavior>

  </serviceBehaviors>

</behaviors>

<bindings>

  <basicHttpBinding>

    <clear />

    <binding name="secureBinding" closeTimeout="10:00:00" openTimeout="10:00:00" receiveTimeout="10:10:00" sendTimeout="10:10:00" bypassProxyOnLocal="false"

             hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647"

             maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text">

      <readerQuotas maxStringContentLength="2147483647" />

      <security mode="Transport">

        <transport clientCredentialType="None"></transport>

      </security>

    </binding>

  </basicHttpBinding>

</bindings>

<serviceHostingEnvironment multipleSiteBindingsEnabled="true"  aspNetCompatibilityEnabled="true" />

<modules runAllManagedModulesForAllRequests="true"/>

4

1 に答える 1

2

https はsoapUIを使用してテストできますが、https が wcf テスト クライアントでサポートされているとは思わないでください。

于 2012-07-17T05:00:17.197 に答える