
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 .
|
|
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).
If you have generated a deployable proxy, you must use a JNDI lookup to access the service interface implementation. From the service interface, you have access to the SEI. The SEI contains methods that can be used for client programming.
After you get the reference to the Logical Port / SEI, you invoke the business methods.
//request a business method mcl.businessMethod();