Forum Discussion
rborges
10 years agoAdvocate I
Self-Signed Certificates on PowerBI
I have seen this posted in some other topics, but so far, didn't find any sort of awnser. Here's my deal: i'm feeding the data via HTTPS and using a self-signed certificate.. in a regular web browse...
tr123
6 years agoNew Member
I managed to get self signed certificates working with the method below. It only works with the downloaded Desktop version not the Windows Store app. You can't modify files in a Windows Store app.
Update the file C:\Program Files\Microsoft Power BI Desktop\bin\Microsoft.Mashup.Container.NetFX45.exe.config to:
<configuration>
<system.net>
<settings>
<servicePointManager
checkCertificateName="false"
checkCertificateRevocationList="false"
/>
</settings>
</system.net>
</configuration>Restart Power BI.
- gampy5 years agoAdvocate I
I've been looking for this solution for a long time. Thanks! No solution was found for a Windows Store app?