1

I need to find out what web services are available on a particular server. I know this host is using some flavor of SOAP.

Is there a tool that can show what services (methods) are available from this host.

AJ.
  • 2,561
  • 9
  • 46
  • 81

1 Answers1

2

If they are using SOAP they should expose a Web Service Definition Language (WSDL) document. This will describe all available methods and the data-types needed to call and parse the responses.

If the service is not meant to be public not sure of any technique other than simply search for a descriptor document somewhere on their domain.

olly_uk
  • 11,559
  • 3
  • 39
  • 45
  • I know about WSDL, but what is the way of getting this doc if there is no specified registry. – AJ. Dec 08 '11 at 03:44
  • like i said if you've not been told where the WSDL is finding it is going to be a bit tricky. – olly_uk Dec 08 '11 at 08:24