I want use SSL (trial) from geotrust in my sample asp.net application localhost. But when I give common name 'localhost', the geotrust certificate gives error 'Common Name does not contain fully qualified domain name.' So what should I do to accomplish this?
Asked
Active
Viewed 3,000 times
2
-
2For localhost you made a self signed certificate and work with that one. – Aristos Mar 02 '13 at 11:16
-
Ok. After creating self signed certificate, how do I link with asp url i.e. localhost:2013? – user1844205 Mar 02 '13 at 11:19
-
You need to run a local iis that can support ssl (not the webserver that come with vs) and connect to https:// – Aristos Mar 02 '13 at 11:29
-
here is the link http://stackoverflow.com/questions/8169999/how-can-i-create-a-self-signed-cert-for-localhost – शेखर Mar 02 '13 at 11:30
-
Why do you think you need to run SSL within the localhost? – user207421 Mar 02 '13 at 11:38
-
1I have to apply SSL on the live server, but first I want to apply it locally and test it for the specific pages. – user1844205 Mar 02 '13 at 11:40
-
Check similar post: http://stackoverflow.com/questions/36037510/secure-websocket-wss-with-https-localhost-ssl-certificate/40107095#40107095 – Pusker György Oct 18 '16 at 11:34