...

/

SOAP Client for Making Web Service Calls

SOAP Client for Making Web Service Calls

In this lesson, we will see how to copy the WSDL document, build the project and create the SOAP client for making web service calls over HTTP.

This lesson is a continuation of Creating SOAP Client Project lesson.

Copying WSDL

For creating the web service client, we need the WSDL file that holds the information about the web service request-response formats and where the service is hosted.

A sample WDSL file is already given in SOAP Messages and WSDL lesson.

Download the WSDL XML document for the web service under test and place it under src/main/resources. For ...