Gaurav123
Gaurav123

Reputation: 5209

Run wcf service from IIS 7.5 with HTTPS instead of HTTP

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

Answers (1)

vibhu
vibhu

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

Related Questions