#
Create a Java WS Client (SOAP)
This tutorial explains to you how to create a simple Java Web Service using SOAP RPC style. This Java Web Service will not be deployed on a Java Application Server.
Creating a Client for a JAX-WS is very simple:
Here are some notes:
QName
stands for "qualified name" and defines a valid identifier for elements and attributes. QNames are generally used to reference particular elements or attributes within XML documents.The value of a QName contains a Namespace URI, local part and prefix. More information you can get from here.
the
.java
file used in this example must be added to the project using a jar library.