Search code examples
wcfsvc

Open .SVC in web browser


I have been given a URI for a WCF web service (something like http://some_uri:portnumber/someservice/service.svc) but I cannot open it via a web browser or postman. I tried to open it with cURL but nothing happened either. Is there a certain wat to open .svc file on ubuntu?


Solution

  • You can open this URI by web browser:

    enter image description here

    You can also open this URI through postman:

    enter image description here

    We can use svcutil to generate proxy classes to call the service. Please make sure that your WCF service is successfully deployed to IIS.

    Feel free to let me know if the problem persists.