Home > Software design >  WCF service error no endpoint listening on HTTPS
WCF service error no endpoint listening on HTTPS

Time:09-23

I'm trying to consume a WCF data service from another application, both are running locally on my machine. I am able to consume it from the console and visit the WCF endpoint from the browser. However, my application cannot reach the application for some reason. Both applications are running on HTTPS. Any ideas?

(Error while consuming the endpoint from the asp.net application) Service trying to access endpoint

(Consuming successfully endpoint from console with svcutil) Confirmed from console that the endpoint exists

CodePudding user response:

Take a look at the log details ,if you don't find anything new, try the following steps to check:

  1. Check for spelling and other similar errors.
  2. Check your network Settings.
  3. Try using IIS to host services.

CodePudding user response:

it looks like i had to add <security mode="Transport" /> to the my basicHttpBinding tag in the service's web config.

service's web config

i found the solution here: [enter link description here][1]

  • Related