winaykumar
winaykumar

Reputation: 21

Generating SOAP Response XML from WSDL 2.0 in Java

My project requirement is to generate SOAP Response XML from wsdl (2.0 and 1.1) like in SOAPUI. What are libraries (Java APIs), I can use to generate response xml? Does it also support WSDL 2.0? Are there any approach to satisfy the requirement?

Upvotes: 2

Views: 1548

Answers (1)

Vegard
Vegard

Reputation: 1942

I would advice you to use Apache CXF. It is a very good framework for creating web services. Add in Spring and Maven and you have some solid frameworks for creating soap services without doing all the messy work yourself.

http://cxf.apache.org/

Upvotes: 2

Related Questions