Anandhakrishnan
Anandhakrishnan

Reputation: 548

Parsing WSDL (WSDL URL) through Java

Is there a way to list the webservices and their parameters including optional or mandatory from a WSDL URL using java (J2SE) ?

Sample Input : https://com.provider.soap/services/travel?WSDL

Upvotes: 0

Views: 244

Answers (1)

Yazan Jaber
Yazan Jaber

Reputation: 2078

You can use something like wsdl4j its the reference implementation of Java API for WSDL. It allows you to parse (read) or write WSDL files.

Upvotes: 1

Related Questions