our project uses componentpro 6.4 on .net 4.7.
code snippet:
`filePathpfx = Server.MapPath("/Key.pfx");
X509Certificate2 x509Certificate1 = new X509Certificate2(filePathpfx, "fakepassword", X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet |
X509KeyStorageFlags.Exportable);
x509Certificate1.Verify();`
The key.pfx contains our old credentials, but I'm not seeing where we can import the credentials to update the key.pfx file in our dashboard. please advise how we can update our credentials without having to update the componentpro version.
Also we tried the new method:
'ComponentPro.Licensing.Saml.LicenseManager.SetLicenseKey("fakekey");'
Entered the key from our dashboard as a string, which returms "Invalid license key\r\nParameter name: licenseKey"
Please advise how we can get this working.
Thanks!
edited 10/26/2021 9:45:39 PM
asked 10/25/2021 10:11:07 PM