Reputation: 548
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
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