vote up 2 vote down star
1

I go to https://mywebsite/MyApp/Myservice.svc and get the following error:

(The link works if I use http:// )

"The service '/MyApp/MyService.svc' cannot be activated due to an exception during compilation. The exception message is: Could not find a base address that matches scheme https for the endpoint with binding BasicHttpBinding. Registered base address schemes are [http].."

Edit: So if I change address="" to address="https:// ..." then I get this error instead: "Error: The protocol 'https' is not supported..... The ChannelDispatcher at 'https://.../Annotation.svc' with contract(s) '"Annotation"' is unable to open its IChannelListener."

Here's what my Web.Config looks like:

<services>
      <service behaviorConfiguration="AnnotationWCF.AnnotationBehavior"
              name="AnnotationWCF.Annotation">
              <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_Annotation"
                      contract="AnnotationWCF.Annotation" />
              <endpoint address="" 
                  binding="basicHttpBinding" bindingConfiguration="SecureTransport"
                  contract="AnnotationWCF.Annotation" />
              <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>

<bindings>
<basicHttpBinding>
	<binding name="BasicHttpBinding_Annotation" maxBufferSize="2147483647"
			maxReceivedMessageSize="2147483647">
		<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
			maxArrayLength="2147483647" maxBytesPerRead="2147483647"
			maxNameTableCharCount="2147483647" />
	</binding>
	<binding name="SecureTransport" maxBufferSize="2147483647"
			maxReceivedMessageSize="2147483647">
		<security mode="Transport">
		<transport clientCredentialType="None"/>
		</security>
		<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
			maxArrayLength="2147483647" maxBytesPerRead="2147483647"
			maxNameTableCharCount="2147483647" />
	</binding>
</basicHttpBinding>
flag

3 Answers

vote up 1 vote down

I think you are trying to configure your service in a similar way to the following config. There is more information here: Specify a Service with Two Endpoints Using Different Binding Values. Also, other than for development, it's probably not a good idea to have both HTTP & HTTPS endpoints to the same service. It kinda defeats the purpose of HTTPS. Hope this helps!

<service type="HelloWorld, IndigoConfig, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null">
    <endpoint
        address="http://computer:8080/Hello"
        contract="HelloWorld, IndigoConfig, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"
        binding="basicHttpBinding"
        bindingConfiguration="shortTimeout"
    </endpoint>
    <endpoint
        address="http://computer:8080/Hello"
        contract="HelloWorld, IndigoConfig, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null"
        binding="basicHttpBinding"
        bindingConfiguration="Secure"
     </endpoint>
</service>
<bindings>
    <basicHttpBinding 
        name="shortTimeout"
        timeout="00:00:00:01" 
     />
     <basicHttpBinding 
        name="Secure" />
        <Security mode="Transport" />
</bindings>
link|flag
that looks like a typo in the MSDN. Shouldn't the second basicHttpBinding be closed AFTER the Security mode="Transport" ? also interesting that the secure address starts with http, not https. – Mike Blandford Dec 15 '08 at 17:32
vote up 1 vote down check

It turned out that my problem was that I was using a load balancer to handle the SSL, which then sent it over http to the actual server, which then complained.

Description of a fix is here: http://blog.hackedbrain.com/archive/2006/09/26/5281.aspx

Edit: I fixed my problem, which was slightly different, after talking to microsoft support.

My silverlight app had its endpoint address in code going over https to the load balancer. The load balancer then changed the endpoint address to http and to point to the actual server that it was going to. So on each server's web config I added a listenUri for the endpoint that was http instead of https

<endpoint address="" listenUri="http://[LOAD_BALANCER_ADDRESS]" ... />
link|flag
vote up 0 vote down

I'm seeing the same error but I'm not sure if it's due to the same reason.

Error is of course: Could not find a base address that matches scheme https for the endpoint with binding MetadataExchangeHttpsBinding. Registered base address schemes are [http].

and my config is relatively simple but I can't navigate directly to the svc page.

This setup is the same i'm using on our production server and i can navigate directly to the svc from there and the service is working as expected. On the staging machine, i'm getting the error but i'm thinking everything should be setup the same so why the error?

   <behaviors>
 <serviceBehaviors>
   <behavior name="MembershipBehaviour">
     <serviceMetadata httpsGetEnabled="true" />
     <serviceCredentials>
       <serviceCertificate findValue="00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"
         storeLocation="LocalMachine" storeName="My" x509FindType="FindByThumbprint" />
       <userNameAuthentication userNamePasswordValidationMode="MembershipProvider"
         membershipProviderName="SqlMembershipProvider" />
     </serviceCredentials>
   </behavior>
 </serviceBehaviors>

   <bindings>
 <wsHttpBinding>
   <binding name="SqlMembershipProvider">
     <security mode="TransportWithMessageCredential">
       <message clientCredentialType="UserName" />
     </security>
   </binding>
 </wsHttpBinding>
 <mexHttpsBinding>
   <binding name="mex" />
 </mexHttpsBinding>

   <services>
 <service behaviorConfiguration="MembershipBehaviour" name="Namespace.UploadService">
   <endpoint name="SqlMembershipProvider"
             address="https://staging.myurl.com/System/UploadService/UploadService.svc/SqlMembershipProvider"
             binding="wsHttpBinding" bindingConfiguration="SqlMembershipProvider"
             contract="Namespace.IUploadService" />
   <endpoint address="mex" binding="mexHttpsBinding" bindingConfiguration="mex" name="mex" contract="IMetadataExchange" />
 </service>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.