
I'm trying to Deploy USD Package deployer for an on-premise CRM through internet over proxy, when trying to login it shows the following Error on the Error Log file:
Error : The remote server returned an error: (407) Proxy Authentication Required.
is there is a way to configure the deployer to access throw proxy IP and credentials?
It's working now, to solve this issue, at USDPackageDeployer folder open PackageDeployer.exe.config and add the following under <configuration> tag :
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
usesystemdefault="true"
proxyaddress="http://<proxy IP>:<Port>"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>
PS: insure that your pc time and the saver time are the same.