Reputation: 2428
Let's suppose there is a link to a web-service, e.g. http://1.2.3.4:56789/ws_bla_bla_bla/some_service?WSDL
This address shows xml document, as I guess this is called Initial WSDL
.
What is it? Just a list of possibe requests/responces pairs and their xml-structure?
Upvotes: 1
Views: 1028
Reputation: 1154
WSDL describes the web service and used to generate client side class which you can used to communicate with service (proxy classes)
couple of generators
SoapUI is another tool which you can used to test service based on WSDL.
Upvotes: 2