My WCF service returns result when calling from console application client. However, it\'s showing
Exception: Unable to connect to remote server
Have you tried this answer? It sounds like it resolves the kind of issue you're experiencing:
Web Reference vs. Service Reference
Try to adjust your bindings for HTTPS and make sure to configure for http also.
<protocolMapping>
<!--<add binding="basicHttpBinding" scheme="http"/>-->
<add binding="basicHttpsBinding" scheme="https"/>
<add binding="webHttpBinding" scheme="https" bindingConfiguration="WebBinding"/>
</protocolMapping>
Issue solved by adding proxy in IIS. :)