I am trying to configure a REST WCF service over SSL and I keep getting:
Could not find a base address that matches scheme https for the endpoint wit
Let me guess: You are running your service from Visual Studio in Developement web server (Cassini), don't you? Development web server does not support HTTPS. You have to host your service in IIS and follow Greg's advice to add HTTPS binding for the site.
You need to add a https binding in IIS.
Two choices:
Specify the full address in the endpoints.
Specify somewhere in the tag the base addresses used for the host, for example:
<host> <baseAddresses> <add baseAddress="http://localhost:8000/service"/> <add baseAddress="https://localhost:8001/service"/> </baseAddresses> </host>