Home:ALL Converter>Can I use a self-signed certificate on a live Azure cloud?

Can I use a self-signed certificate on a live Azure cloud?

Ask Time:2011-07-18T19:49:00         Author:sharptooth

Json Formatter

I need to test whether HTTPS works right in my Azure web role deployed on the cloud. I followed all steps to create a self-signed certificate and associate it with my role. Now my role works okay via HTTP, but requests HTTPS port just time out.

I suspect the problem is that the certificate is self-signed. Can I use self-signed certificates on a cloud?

Author:sharptooth,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/6732434/can-i-use-a-self-signed-certificate-on-a-live-azure-cloud
Phil Eddies :

If there is a problem with a certificate I would not expect the connection to \"time out\", that shoulds more like a firewall or comms issue. ",
2011-07-18T11:58:57
Steve Morgan :

As Phil suggests, your timeout isn't caused by your use of a self-signed certificate. You just get a security warning from your browser if the certificate isn't installed locally as a trusted Cert.\n\nI'm using self-signed certs quite successfully.\n\nMore likely that you don't have a HTTPS Endpoint defined on port 443 (or a connectivity issue, again, as Phil suggests).",
2011-07-18T12:05:46
yy