c# 윈도우 응용프로그램에서 wcf 서비스에 접속할때, http 프로토콜을 https 로 변경하니, 오류가 나네요.

1 답변

0 투표

<?xml version="1.0" encoding="utf-8"?>

<configuration>

  <configSections>

  </configSections>

  <startup>

    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>

  </startup>

  <system.serviceModel>

    <bindings>

      <basicHttpBinding>

        <binding name="BasicHttpBinding_IService">

          <security mode="Transport">

            <transport clientCredentialType="None"/>

          </security>

        </binding>

      </basicHttpBinding>

    </bindings>

    <client>

    </client>

  </system.serviceModel>

</configuration>

구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...