Click here to Skip to main content
15,891,717 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I created WCF application and want to get wsdl. I get this error :"

Could not find a base address that matches scheme https for the endpoint with binding WSHttpBinding. Registered base address schemes are [http]."
Here is my web.config


C#
<pre lang="xml"><system.serviceModel>
    <services>
      <service behaviorConfiguration="ServiceApp.Service1Behavior" name="ServiceApp.Service">
        <host>
          <baseAddresses>
            <add baseAddress="https://10.0.0.17/Service.svc"/>
          </baseAddresses>
        </host>
        <endpoint address="" binding="wsHttpBinding" bindingConfiguration="TransportSecurity" contract="ServiceApp.IService"/>
        <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <bindings>
      <wsHttpBinding>
        <binding name="TransportSecurity">
          <security mode="Transport">
            <transport clientCredentialType="None"/>
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="ServiceApp.Service1Behavior">
          <serviceMetadata httpsGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>




What should I do not to have this error and to get wsdl (using HTTPS) ?
Posted
Updated 15-Oct-13 3:18am
v2

Drop the Service.svc component from your base address.

I haven't had to specify the service name in the address, I believe that's provided by the MEX endpoint based on the rest of the configuration.
 
Share this answer
 
Comments
AshLiGaLa 15-Oct-13 10:00am    
unfortunately it doesnot help

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900