Jan 13 2022 07:14 AM
I would install a SSL certificate on Windows Server 2012 R2.
I received from SSL/provider 4 files:
In IIS i have installed "mydomain_company_it_cert.cer" choosing "Complete Certificate Request".
In this way i can't see certificate from dropdown list when i am trying to binding in IIS.
I have tried to run "certutil -repairstore my xxxxxxxxxxx" but i am constantly prompted for smart card.
This article it doesn't help much , the hot-fix has been removed.
I read this thread but i don't know if have to generated .CSR again at first point of reply.
Any thoughts on how to bypass the smart card and get the repair to complete are appreciated
Jan 14 2022 01:33 PM
Jan 15 2022 01:09 AM
Jan 15 2022 01:44 AM
Jan 15 2022 02:07 AM
Jan 15 2022 02:13 AM
SolutionJan 15 2022 04:09 AM
Jan 15 2022 04:16 AM
You can delete it because it has no key in it. Import the PFX from the store like this and follow the wizard.
Or double-click it in explorer and follow the wizard from there
Jan 15 2022 08:26 AM - edited Jan 15 2022 08:36 AM
Thanks. Last step.
I need to define URL rewrite rules or is enough binding site with SSL certificate ?
Strange thing: I've done binding with SSL certificate but now
With Edge the site has not reachable with domain_name.xxx.it but only with ip address (we've IP Public) and with Firefox has reachable with domain_name.xxx.it but site is not secure (connection is not secure).
In Edge in the address bar i enter "domain_name.xxx.it" and after 30/40 seconds receives "page not reachable" and in the address bar i see https://domain_name.xxx.it//
If enter ip address, the page has shown but site not secure.
In Firefox enter domain_name.xxx.it page has shown but site not secure.
Jan 15 2022 08:52 AM
What are the certificate details? Is it a certificate which has been created using an internal Certificate Authority and are you missing the intermediate and root certificates in your store?
Jan 16 2022 02:35 AM
Thanks. certificate details:
In my Personal Store i've only this certificate.
I call in the browser mydomain.company.it
Edge replies me "Unable to reach this page"
Firefox shows me the page but "Connection is not secure".
At the beginnig i've received 4 files from provider (you can see first message) but after i received .pfx file and installed that.
I don't know if i need to use URL rewrite module in IIS.
My first problem is that Edge doesn't show the page while Firefox and Chrome show it but reporting that the site is not safe.
Could the fact that Firefox and Chrome show the unsafe page could be that some resource is called up in the MasterPage with http: // ... and not https: //?
Jan 16 2022 02:41 AM
Jan 16 2022 02:44 AM
Jan 16 2022 02:46 AM
Jan 16 2022 03:07 AM
Jan 16 2022 05:12 AM
Jan 16 2022 07:57 AM
Jan 16 2022 08:11 AM - edited Jan 16 2022 08:12 AM
If you access the page using https, it should not give you errors. Binding is done on the site using the installed certificate and port 443?
Jan 16 2022 08:19 AM
@Frankie1969
I've replaced the Default.aspx (starting page) page with a "poor code" with only https external references.
Same situation:
if i enter in address bar mydomain.company.it page has shown but site is not secure.
if i enter in address bar https://mydomain.company.it/default.aspx page has not shown.
Whoever lasts wins it.
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="ApplicationName.Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="body">
<h3>We suggest the following:</h3>
<ol class="round">
<li class="one">
<h5>Getting Started</h5>
ASP.NET Web Forms lets you build dynamic websites using a familiar drag-and-drop, event-driven model.
A design surface and hundreds of controls and components let you rapidly build sophisticated, powerful UI-driven sites with data access.
<a href="https://go.microsoft.com/fwlink/?LinkId=245146">Learn more…</a>
</li>
<li class="two">
<h5>Add NuGet packages and jump-start your coding</h5>
NuGet makes it easy to install and update free libraries and tools.
<a href="https://go.microsoft.com/fwlink/?LinkId=245147">Learn more…</a>
</li>
<li class="three">
<h5>Find Web Hosting</h5>
You can easily find a web hosting company that offers the right mix of features and price for your applications.
<a href="https://go.microsoft.com/fwlink/?LinkId=245143">Learn more…</a>
</li>
</ol>
</div>
</div>
</form>
</body>
</html>
Jan 16 2022 08:19 AM - edited Jan 16 2022 08:21 AM
if i enter in address bar https://mydomain.company.it/default.aspx page has not shown.
if i enter in address bar http://mydomain.company.it/default.aspx page HAS shown.
Yes 443 port.
Jan 15 2022 02:13 AM
Solution