0

.svc ファイルを含み、https でホストされている Web サイトを REST API として使用しています。私の質問は次のとおりです。私のウェブサイトにはSVCUTIL.exeありhttps://XXXXXXXますが、https リクエストで呼び出すと失敗しますが、http リクエストでは正常に動作します。また、SSL 証明書を使用したくありません ありがとう

これは私のwebconfig設定です:

  <serviceBehaviors>
    <behavior name="Mybehaviour">
      <serviceMetadata httpsGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="true" />
    </behavior>
  </serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
<services>
  <service behaviorConfiguration="Mybehaviour" name="PBUIService">
    <endpoint address="https://XXXXXXXXXXXXXXX" behaviorConfiguration="PBBehaviour" binding="webHttpBinding" bindingConfiguration="wsHttpBindingSettings" contract="PBUIService">
    </endpoint>
    <endpoint address="mex" binding="mexHttpsBinding"
 contract="IMetadataExchange" />
  </service>   
</services>
4

1 に答える 1