function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
FredrickUNFredrickUN 

Proxy settings for the command line Data Loader

Hi,
 
I'm trying to use the Data loader via the command line but I dont know how to set the proxy settings.
 
Can anybody help?
 
cheers
MVJMVJ
You can set them in the process-conf.xml file.

The entries should look like this:

        <entry key="sfdc.proxyHost" value="yourhost.com"/>
        <entry key="sfdc.proxyPort" value="yourport"/>
        <entry key="sfdc.proxyPassword" value="yourPassword"/>


Hope this helps you out.

Mike