I\'ve got a WCF Service running on my local IIS server. I\'ve added it as a service reference to a C# Website Project and it adds fine and generates the proxy classes automa
I had a similar issue. I resolved it by changing
to
and also changed my URL to use https:// instead of http://.
Also in node, change
binding="basicHttpBinding"
binding="basicHttpsBinding"
This worked.