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
openaccessopenaccess 

Does Sforce Web Services API support Proxy Server

How can we pass Proxy credentials when using Sforce Web services API? Can you provide sample code in C#?

Thanks
Dipak
benjasikbenjasik
In C#, should just be:

sforceService.Proxy = new WebProxy("localhost", 5049);

See the docs on WebProxy if your proxy needs authentication