Deploy web services client applications
After we have created an EAR file for the web services client application, we can deploy the web services client application into the Application Server.
To deploy a Java-based web services client, we need an enterprise application, also known as an EAR file configured and enabled for web services.
A JAX-WS application is packaged as a WAR file or a WAR module within an EAR file. A JAX-WS application does not require additional bindings and deployment descriptors for deployment whereas a JAX-RPC web services application requires you to add additional bindings and deployment descriptors for application deployment. JAX-WS is much more dynamic, and does not require any of the static data generated by the deployment step required for deploying JAX-RPC applications. For JAX-RPC web services clients, configure the client deployment descriptors.
We can use either the console or the wsadmin scripting tool to deploy an EAR file. If we are installing an application containing web services using wsadmin, specify the -deployws option for JAX-RPC applications.
Use the wsdeploy command only with JAX-RPC applications. The wsdeploy command is not applicable for JAX-WS applications.
If we are installing an application containing web services using the console, select Deploy WebServices in the Install New Application wizard. Read about installing a new application for more information on using the console. The following actions deploy the EAR file with wsadmin:
- Start install_root/bin/wsadmin from a command prompt.
On operating systems such as AIX or Linux, start install_root/bin/wsadmin.sh.
- Deploy the EAR file.
- For JAX-WS web service applications, enter the $AdminApp install EARfile "-usedefaultbindings" command at the wsadmin prompt.
- For JAX-RPC web service applications, enter the $AdminApp install EARfile "-usedefaultbindings -deployws" command at the wsadmin prompt.
Results
You have a deployed a web service client in the application server runtime environment.
What to do next
Test the web services client. We can now test a web services-enabled managed client EAR file or an unmanaged client JAR file.
Related tasks
Implement static JAX-WS web services clients Implement JAX-RPC web services clients Test web services-enabled clients Task overview: Implement web services applications Install enterprise application files with the console
wsdeploy command