Reputation: 5209
I have created simple wcf service. After hosting the same at IIS 7.5. I am able to access the wcf service with HTTP , but I want to access the service using HTTPS.
Example : http://myservice.publicservice/MyPublicService.svc?wsdl is accessible if I browse from IIS.
but https://myservice.publicservice/MyPublicService.svc?wsdl is not accessible.
Upvotes: 0
Views: 124
Reputation: 1695
you need to enable https binding in IIS. right click on the site where your service is hosted and there should be an option "Edit Bindings". Use that to add an https binding
Upvotes: 1