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:
- How do I setup the SSL connection between my WP7 app and my Azure hosted WCF service so that only users of the app can access the service?
Thanks!