Reputation: 480
I'm trying to connect to my azure WCF service using an SSL certificate. I've seen a good few tutorials talking about changing the 'binding' properties in the web.config file but the tutorial I followed results in this not being possible (as far as I can see):
The data in my Azure database is exposed using my Azure hosted WCF service and at the moment, the connection string contains sensitive data.
Using my SSL certificate (I recently purchased a wildcard SSL certificate) I'd like to connect to my Azure hosted WCF service from my WP7 app.
Essentially I'm looking for some guidance:
Thanks!
Upvotes: 1
Views: 922
Reputation: 24895
You'll need to do a few things:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding allowCookies="True">
<security mode="Transport" />
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
Upvotes: 1