Set proxy settings for access to Azure AD

What is needed to enable the sync server of the Identity Manager 7.1.2 to accessing Azure AD via a internet proxy? 

Actually the server tries to connect Azure AD directly without a proxy, which is not allowed. The creation of a new sync project in the Sync Editor gives the following error:

[System.Net.Sockets.SocketException] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 94.245.88.152:443

Thanks for your support.

Parents
  • The solution was this:

    In C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config add the following section:

    <system.net>
    <defaultProxy enabled="true" useDefaultCredentials="true">
    <proxy
    usesystemdefault="true"
    proxyaddress="http://{FQDN Proxy}:{Proxyport}"
    bypassonlocal="true"
    />
    </defaultProxy>
    </system.net>
Reply
  • The solution was this:

    In C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config add the following section:

    <system.net>
    <defaultProxy enabled="true" useDefaultCredentials="true">
    <proxy
    usesystemdefault="true"
    proxyaddress="http://{FQDN Proxy}:{Proxyport}"
    bypassonlocal="true"
    />
    </defaultProxy>
    </system.net>
Children