Forum Discussion
PBI Desktop connect to Azure via Proxy
Thanks Anonymous Yes thats how our environment works, sadly the process doesn't work for me.
Hi,
I'm running into the same issue with PBI and the Big Query connector.
I created the Microsoft.Mashup.Container.exe.config file with no success...
My proxy is using NTLM.
I tried two solutions:
1:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<defaultProxy useDefaultCredentials="false">
<proxy
usesystemdefault="true"
proxyaddress="http://user:password@mycompanyproxyaddress:80"
/>
</defaultProxy>
</system.net>
</configuration>
2:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy usesystemdefault="true"/>
</defaultProxy>
</system.net>
</configuration>
Where could I go now.... ?