안녕하세요, 스택 오버 플로우에서 제공되는 모든 솔루션을 시도했습니다. "제공되는 URI 스키마 'https'가 유효하지 않습니다. 'http'가 필요합니다. 매개 변수 이름 :"오류. 서비스는 IIS7에서 잘 돌아가고 있으며이 서비스를 사용하려고하면이 오류가 발생합니다. 내 wcf 서비스 구성 및 클라이언트 구성을 참조하십시오.제공된 URI 스키마 'https'가 유효하지 않습니다. 예상 된 'http'. 매개 변수 이름 - 즉각적인 도움이 필요합니다
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation targetFramework="4.0"/>
<httpRuntime/>
</system.web>
<system.serviceModel>
<serviceHostingEnvironment >
<serviceActivations>
<add factory="System.ServiceModel.Activation.ServiceHostFactory" relativeAddress="./CARetriever.svc" service="CARetrieverInterface.CARetriever"/>
</serviceActivations>
</serviceHostingEnvironment>
<behaviors>
<serviceBehaviors>
<behavior name="MyTesting">
<!-- Other options would go here -->
<useRequestHeadersForMetadataAddress>
<defaultPorts>
<add scheme="https" port="443" />
</defaultPorts>
</useRequestHeadersForMetadataAddress>
<serviceMetadata httpsGetEnabled="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="CARetrieverInterface.CARetriever" behaviorConfiguration="MyTesting">
<endpoint address="https://sspumptest.dhr.state.ga.us/testcode/CARetriever.svc" binding="basicHttpBinding" contract="CARetrieverInterface.ICARetriever" bindingConfiguration="secureHttpBinding">
<identity>
<dns value="sspumptest.dhr.state.ga.us" />
</identity>
</endpoint>
<!--<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />-->
</service>
</services>
<bindings>
<basicHttpBinding>
<binding name="secureHttpBinding">
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</configuration>
My client configuration is given below.
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_ICARetriever">
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://sspumptest.dhr.state.ga.us/testcode/CARetriever.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICARetriever"
contract="CARetrieverRef.ICARetriever" name="BasicHttpBinding_ICARetriever" />
</client>
</system.serviceModel>
</configuration>