!--a11y-->
Programming a Web Service Client
Application 
This process describes the basic steps of developing a Web service client application.
A standalone or deployable proxy is generated.
For more information, see Creating a Deployable Proxy and Creating a Standalone Proxy.
...
1. Access the implementation class of the service interface.
![]() |
If you have generated a standalone proxy, the implementation class of the Service Interface is instantiated using the default constructor. Use the implementation class to receive a stub that implements the service endpoint interface (SEI).
2. Create the instance of a logical port.

3. Invoke the business methods.
After you get the reference to the Logical Port / SEI, you invoke the business methods.

//request a business method mcl.businessMethod(); |