C# The provided URI scheme 'http' is invalid; expected 'https'
app-config, c#, uri
Solution
You are specifying an `httpsTransport` in the binding, but in the endpoint definition you are providing `http` as a protocol. As suggested in the comment, try changing the `<endpoint address="http://...` to `https`
Problem
I am getting this error while invoking a method of my web service, I dont know what to do anymore :s Here is the exception details: {"The provided URI scheme 'http' is invalid; expected 'https'.\r\nParameter name: via"} Here is my App.config ``` <?xml version="1.0" encoding="utf-8" ?> <configuration> <connectionStrings> <add name="PowerWeb" connectionString="Data Source=MYSERVER;Initial Catalog=MYTABLE;User ID=MYUSER;Password=MYPW" providerName="System.Data.SqlClient" /> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <system.serviceModel> <bindings> <customBinding> <binding name="ZWS_HARMONIZACAO"> <!-- WsdlImporter encountered unrecognized policy assertions in ServiceDescription 'urn:sap-com:document:sap:rfc:functions': --> <!-- <wsdl:binding name='ZWS_HARMONIZACAO'> --> <!-- <saptrnbnd:OptimizedXMLTransfer xmlns:saptrnbnd="http://www.sap.com/webas/710/soap/features/transportbinding/">..</saptrnbnd:OptimizedXMLTransfer> --> <!-- <saptrnbnd:OptimizedXMLTransfer xmlns:saptrnbnd="http://www.sap.com/webas/710/soap/features/transportbinding/">..</saptrnbnd:OptimizedXMLTransfer> --> <!-- <sapattahnd:Enabled xmlns:sapattahnd="http://www.sap.com/710/features/attachment/">..</sapattahnd:Enabled> --> <textMessageEncoding messageVersion="Soap11" /> <httpsTransport authenticationScheme="Basic" /> </binding> </customBinding> </bindings> <client> <endpoint address="http://mydomain:8080/sap/bc/srt/rfc/sap/zws_harmonizacao/010/zws_harmonizacao/zws_harmonizacao" binding="customBinding" bindingConfiguration="ZWS_HARMONIZACAO" contract="ServiceReference1.ZWS_HARMONIZACAO" name="ZWS_HARMONIZACAO" /> </client> </system.serviceModel> </configuration> ``` Can anyone help me? Thanks a lot in advance