NAING SOE AUNG built the Photo Hidden Data app as a Freemium app. This SERVICE is provided by NAING SOE AUNG at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Photo Hidden Data unless otherwise defined in this Privacy Policy. Information Collection and Use ...
You may encounter access denied error while creating certificate in .net But you've granted permission to certFilePath folder and no issue with this. You have no issue in development environment too. Only occur in Production server. How to solve? While creating certificate, by default it will create physical cert file in server. Since production servers are configured with limited permissions/access rights and mostly deny access by default due to security concerns, there are high chances that you will get access denied error. So stop wasting time with access rights. Instead, create certificate on memory using "X509KeyStorageFlags.EphemeralKeySet" flag. Ya. this is the solution when you need to create cert temporally. It works on both development & prod environment regardless of access rights. and don't forgot dispose after using it. certificate.Dispose(); .net, c#, asp.net