Developers Program

Making SOAP calls via proxy server

Published: February 05 2007, 11:46:00 AMยทUpdated: July 29 2022, 2:15:59 PM

Products

Question

Can I make an eBay web services request from behind a proxy server?

Answer

Summary

Yes, you can make SOAP calls from behind a proxy server, by configuring the proxy settings.

Detailed Description

For .NET applications, you need to configure the proxy settings programmatically or in the machine.config / web.config file; as per this Microsoft Article:
PRB: Error on .NET client that consumes a Web service through an HTTP proxy server

For Java applications, you need to set the Java environment variables, "https.proxyHost" and "https.proxyPort" to allow HTTPS connections to work properly through your proxy server.

Java Networking and Proxies If you are using Axis, you need to set the java properties in Axis.
Web Services - Axis

Additional Comments
How well did this answer your question?