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
udupaudupa 

Sforce Data Loader - (407)Proxy Authentication Required Error

Hi,

I've installed Sforce Data Loader. Since I am using Proxy server, in the Settings tab, i've included Proxy host,port, user name and password. When I am trying to login, it's throwing the error message "(407)Proxy Authentication Required -Access to the Web Proxy service is denied".

What are the settings needed in order to get connected via Proxy Server?

Thanks in advance....

Message Edited by udupa on 10-26-2005 05:19 AM

Message Edited by udupa on 10-26-2005 05:19 AM

Message Edited by udupa on 10-26-2005 05:20 AM

Message Edited by udupa on 10-26-2005 05:22 AM

SuperfellSuperfell
Your proxy server is probably requiring an authentication method that the data loader doesn't support, do you know which auth methods your proxy is configured for ?
udupaudupa
Hi,

I don't know about the proxy authentication settings.

But, using the Java API's (enterprise.wsdl), we are able to get connected to salesforce.com through the same proxy..
Just I've added these lines to the code:

System.getProperties().put( "proxySet", "true" );

System.getProperties().put( "http.proxyHost", "" );

System.getProperties().put( "http.proxyPort", "" );

System.getProperties().put( "http.proxyUser", "" );

System.getProperties().put( "http.proxyPassword", "" );

Similarly, the same thing is added in Data Loader also, in the settings menu.

What are the other changes to be done?

How we can view the code for Data Loader?

Thanks in advance.....