user622222
user622222

Reputation: 131

How to generate a web service client in Java using Eclipse

Using Eclipse, what's the best way to generate a web service class?

Upvotes: 4

Views: 1380

Answers (4)

John Velandia
John Velandia

Reputation: 11

This is the perfect way to do it. http://wso2.org/library/tutorials/creating-web-service-client-3-steps-using-eclipse. Bear in mind you have to install Axis2 before anything

Upvotes: 1

Michael Borgwardt
Michael Borgwardt

Reputation: 346476

Here's a step-by-step instruction on how to generate a web service client in eclipse. Note that you'll need the Java EE distribution of Eclipse, and possibly install a JAX-WS implementation (if you don't want to use the one included in the jdk) first (though I think you can have eclipse do that for you).

Upvotes: 3

Johan Sjöberg
Johan Sjöberg

Reputation: 49197

Most IDE's provide this functionality out of the box. If you're using Netbeans, simply install the webservice plugin and create a new-file using ctrl+n and select New > Other > Web Services > Web Service Client

Upvotes: 2

Faisal Feroz
Faisal Feroz

Reputation: 12785

You can use Apache Axis to generate a Web Service Client. Here is a link that can help you out.

Upvotes: 1

Related Questions