jdiazdesico wrote:
http://blogs.msdn.com/b/jpsanders/archive/2009/09/29/walkthrough-using-httplistener-as-an-ssl-simple-server.aspx
Now how can I implement it with my URL or google chrome to make it work?
Hi,OK I created a certificate using MakeCert. This is the command that I used.
Sorry if I missunderstand. HTTPS will not work only changing the url in the code. You must secure the socket with a certificate. Because of casablanca uses HTTP windows API on Windows, you can use any tutorial that secure the socket. I found one and works for windows 7. I will test with Windows 8.1.
This is the link:
http://blogs.msdn.com/b/jpsanders/archive/2009/09/29/walkthrough-using-httplistener-as-an-ssl-simple-server.aspx
You can create a self signed certificate easily with the next link:
http://www.howtogeek.com/107415/it-how-to-create-a-self-signed-security-ssl-certificate-and-deploy-it-to-client-machines/
Regards,
Makecert -r -pe -n CN="http://172.29.15.63:2001/" -b 05/10/2015 -e 12/22/2025 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localmachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12
and then i followed this link to make it safe and truested. http://blogs.msdn.com/b/jpsanders/archive/2009/09/29/walkthrough-using-httplistener-as-an-ssl-simple-server.aspx
Now how can I implement it with my URL or google chrome to make it work?