I;m getting the below error:
Could not find a base address that matches scheme http for the endpoint with binding WSHttpBinding. Registered base address schemes are [].
backend code:
sh = New ServiceHost(GetType(WcfService1.ServiceClass)) 'This line which produces the error
sh.Open()
<service name="WcfService1.ServiceClass" behaviorConfiguration="metadataSupport">
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/WCFService1"/>
<add baseAddress="net.pipe://localhost/WCFService1"/>
<add baseAddress="net.tcp://localhost:8000/WCFService1"/>
</baseAddresses>
</host>
<endpoint address="" binding="wsHttpBinding" contract="WcfService1.WCFService.IServiceClass"/>
<endpoint address="tcpmex" binding="mexTcpBinding" contract="IMetadataExchange"/>
<endpoint address="namedpipemex" binding="mexNamedPipeBinding" contract="IMetadataExchange"/>
</service>
any suggestions?