Sweet Suchi
Sweet Suchi

Reputation: 1

Create installer which can create the Self signed certificate and host the application by binding certificate using .Net

var binding = site.Bindings.Add("*:443:", Encoding.UTF8.GetBytes(certThumbprint), StoreName.My.ToString());
binding.Protocol = "https";
serverManager.CommitChanges();

I tried to create the Self signed certificate and tried to bind get the issue such as

Value doesn't fall within the expected range

Upvotes: 0

Views: 40

Answers (0)

Related Questions