Reputation: 21
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
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.
Upvotes: 2