Proxy Server Settings
In this lesson, we will learn how to add a proxy setting to the SOAP web service client.
We'll cover the following...
What is a proxy server?
A proxy server is an intermediary server that is virtually located between the client and the server. All the service requests are sent to the actual server via proxy servers.
Adding a proxy setting to WebServiceTemplate
We have already learned in the Sending requests using SOAP client lesson how to create a WebServiceTemplate
that can be used to make web service calls.
This lesson is an extension of that part and here, ...