Windows Azure: The certificate's private key could not be accessed.
<WebRole name="XYZ" vmsize="ExtraSmall" enableNativeCodeExecution="true">
<Runtime executionContext="elevated"></Runtime>
The above is the fix for it. If you don;t want to do it, the below can also work:
<Certificates>
<Certificate name="XYZ" permissionLevel="limitedOrElevated" storeLocation="LocalMachine" storeName="My" />
</Certificates>
Comments
Post a Comment