Click here to Skip to main content
Click here to Skip to main content

Consuming Web Service in Java 5

By , 3 Oct 2006
 
Code working from Eclipse

Introduction

This article describes how to consume Web services in Java 1.5.0 using the new JAX-WS 2.0 API (JSR 228).

Developers around the world, including me, have always complained about the hard ways to work in Java to consume even a Web service as simple as adding two numbers.

However, with JAX-WS 2.0 API now available in core Java in JDK 1.5.0, life is simple like never before.

The article describes how this API can be used for maximum benefits using some off-the-shelf tools similar to wsdl.exe available from Microsoft in the .Net Framework to generate the proxy classes.

Before starting with the discussion, some vocabulary background may be needed for first timers. Following are simple definitions to the terms used:

  • Web Service: An operation / task available on a remote application running in an unknown environment.
  • SOAP: A language in which the two unknown applications would talk to each other.
  • Message: The content transferred over wire using SOAP as the language.
  • WSDL: A language that would define the exact grammar of SOAP.
  • Proxy Class: A piece of code, available on the client machine, that would perform the task of making connections to the server and taking care of serialization and de-serialization.

Publishing a Web Service using ASP.Net

For our case, we would publish a Web service using ASP.NET. You can look into other articles around the globe onto how to publish a Web service using ASP.NET.

Here is the synopsis of the Web service:

Name: BasicWebServices
Namespace: http://www.edujinionline.com/ns/ws/samples/dn/S01BasicServices/
Operation: Add
Input Message: AddMessage
Output Message: AddMessageResponse
AddMessage: Two parameters, x and y, of type double
AddMessageResponse: One parameter, AddMessageResult, of type double

Consuming the Web Service using JAX-WS 2.0 in Java 1.5

Download JAX-WS Reference Implementation from here. Extract the files using the procedure described in the installation section of the document above.

Dig into the bin folder that would have a utility called wsimport. Yes! All those who have worked with wsdl.exe in the .NET Framework would immediately understand what the purpose of the tool is.

Apart from various other options, the important options supported by the tool are:

  • -p pkg: Name of the package where the source files will be generated
  • -s src-directory: Path to the directory where the source files will be kept
  • -d directory: Path to the directory where the binary files will be kept

On the console, issue the following command (all in one line):

wsimport
    –p com.edujinionline.tutorials.services
    –s src
    –d bin
    http://localhost/BasicWebServices.asmx?WSDL

The last parameter is the location of the WSDL file. Yes, it works with HTTP transport beautifully.

Now… now, what? The proxy class is available. You will find the following classes generated:

  • BasicWebServices
  • BasicWebServicesSoap
  • AddMessage
  • AddMessageResponse
  • ObjectFactory

... and these are the proxy classes ready for use. See the code below for demonstration.

public class BasicWebServicesClient
{
    public static double testAdd(double x, double y)
    {
        double retVal = 0;

        BasicWebServices service = new BasicWebServices();
        BasicWebServicesSoap soap = service.getBasicWebServicesSoap();

        ObjectFactory factory = new ObjectFactory();
        AddMessage request = factory.createAddMessage();
        request.setX(x);
        request.setY(y);

        AddMessageResponse response = soap.add(request);

        retVal = response.getAddMessageResult();

        return retVal;
    }
}

And the main method to use the wrapper method testAdd described above:

public class MainClass
{
    public static void main(String[] args)
    {
        double x = 34.56;
        double y = 45.67;

        double z = BasicWebServicesClient.testAdd(x, y);
        System.out.printf("%f + %f = %f", x, y, z);
    }
}

Summary

Consuming Web services in Java requires just two steps now. The first step is to create proxy classes. The second step is to go ahead and use them.

History

  • 3rd October, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

mastergaurav
Architect
India India
Member

Gaurav lives in Bangalore, the Silicon Valley of India.

His technical strength lies in having deep understanding of not one or two but bunch of enterprise frameworks.

Lately, he is working on an MVC framework implementation for Android put in open domain at http://sf.net/projects/android-mvc

Today, he is an independent guy:

  • He is a programming language independent guy, well almost. He is proficient in C, C++, Java, C#, VB.Net, C++.Net, JavaScript, PHP, Tcl, Python, Ruby
  • He is an OS independent guy, well almost. Has worked and developed at length on HP-UX, Linux (Redhat / Mandrake), Macintosh (9, 10.x), Windows (NT, 2000, 2003, XP, Vista), Solaris (8, 9, 10); and mobile platforms Android, iPhone, Blackberry
  • He is a target independent guy, well almost. Has worked on thick clients (mainly desktops) as well as thin clients (mainly alternative platforms - Symbian, PalmOS, WinCE, WinXP Embedded, Linux Embedded, Android, iPhone, Blackberry)

Today, his thrust areas are Service Oriented Architecture (implementation expert in Java, .Net and PHP; integration with Mainframe and other legacy environments), Mobile Technologies and RFID.

He holds a Bachelor's Degree (B. Tech.) from IIT Kanpur www.iitk.ac.in. His major was in EE with specialization in DSP (SSP).

His hobby is listening music, reading books (no, he can't read novels), photography and travelling.

Should you wish to talk to him, you can drop him a mail at gaurav[dot]vaish[at]gmail[dot]com. He generally responds within 24-48 hrs unless there is a compelling reason.

And yeah... here's his personal website:
http://www.m10v.com

Smile | :)


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionWeb service method implementationmemberSivaRamChowdary3 Feb '13 - 8:21 
GeneralMy vote of 4memberMurthy Nulu26 Aug '12 - 21:34 
GeneralWebService callmemberAnil Thapliyal31 Aug '10 - 5:55 
QuestionDeploying and invoking the servicemembervskale@yahoo.com3 Aug '10 - 21:32 
Questionhave a problem in the generated codemembermouhannad5 Nov '09 - 9:46 
AnswerRe: have a problem in the generated codemembermastergaurav5 Nov '09 - 14:57 
QuestionMay I call webservice(java) for Windown form!memberKanePro18 May '09 - 0:29 
AnswerRe: May I call webservice(java) for Windown form!membermastergaurav5 Nov '09 - 14:56 
GeneralNot working on Java 1.5memberddsuresh6 Aug '08 - 0:15 
GeneralRe: Not working on Java 1.5membermastergaurav5 Nov '09 - 14:55 
GeneralDiffgrams --> javamemberwouter devers5 Feb '07 - 0:43 
GeneralRe: Diffgrams --> javamembermastergaurav5 Feb '07 - 16:48 
GeneralRe: Diffgrams --> javamemberwouter devers8 Feb '07 - 0:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 3 Oct 2006
Article Copyright 2006 by mastergaurav
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid