null
null

Reputation: 9144

What Java library can I use to process WSDL files?

In SOA, I can send a WSDL file to SOA application server that will return an XML response.

I want to create a simple Java application that can receive a WSDL file, process it, and return XML response.

Is there a free Java library or framework that I can use to achieve this?

Upvotes: 1

Views: 2589

Answers (2)

TheWhiteRabbit
TheWhiteRabbit

Reputation: 15768

Yes all you need is a SOAP stack.

There are verygood opensource framework choices like Apache AXIS , Apache CXF

Upvotes: 1

OQJF
OQJF

Reputation: 1350

recommend you to use wsdl4j. It provides a lot of API for you to do the operation. http://sourceforge.net/projects/wsdl4j/

Upvotes: 1

Related Questions