Danyun Liu
Danyun Liu

Reputation: 3092

Framework or tools for build wsdl with java

Is there any excellent tool in JAVA to deal with webservice or wsdl?

Upvotes: 2

Views: 442

Answers (4)

duffymo
duffymo

Reputation: 308763

If you're a Spring user, I'd recommend the Spring web service module. It makes using WSDL, creating web services, and implementing clients easy.

Upvotes: 1

Umesh Kacha
Umesh Kacha

Reputation: 13666

If you are using Eclipse try Eclipse Web Tools Platform Project, it's good at my point of view and sufficient for me.

For IntelliJIDEA Web Services link

Upvotes: 1

pinoteres
pinoteres

Reputation: 11

Read about wsimport utility, which generates client-support code from the WSDL document (or URL pointing at service endpoint).

Upvotes: 1

Michael Borgwardt
Michael Borgwardt

Reputation: 346300

Yes. There is a standardized API (JAX-WS) that is even integrated into the Java standard API (the javax.xml.ws packages) since Java 6, and multiple implementations thereof, such as Axis and CXF.

Upvotes: 4

Related Questions