Writing a Web Service Client in Java using Eclipse IDE
The steps involved in writing the Web Service Client will be as follows: a) Locate the service description in the form of WSDL for the web service in question. (Actually the first step is to search UDDI for the services. I am excluding this step here to simplify the process ) b) Once we have the WSDL document, most of the client code is auto-generated using the wsimport tool. c) Run the client and invoke the web service. Now I will demonstrate the steps to write a Web Service client in Java using Eclipse IDE. This web service client is invoking the web services available at the url "http://www.webservicex.net ” 1) Go to the url : http://www.webservicex.net/ws/default.aspx 2) Choose the web service you want to write the client for. I have chosen Computer Unit converter, which gi...