vtortola
vtortola

Reputation: 35905

Parse SOAP webservice dynamically

I'd like to create an application where you can specify a webservice's url and automatically get the input parameters a output format. (similar to svcutil in Visual Studio I think), in the way the user could add webservices dynamically to the app and select which data is gonna send and what is he gonna do with the return data.

So it seems like I have to go through the WSDL, do you know any good reading or documentation about this? Or any advice from your experience? :)

Thanks in advance and kind regards.

Upvotes: 2

Views: 597

Answers (2)

David Hunt
David Hunt

Reputation: 128

SoapUI inspects and invokes web services.

Upvotes: 1

Moonshield
Moonshield

Reputation: 935

Have you tried W3Schools? They have some tutorials on WSDL, SOAP and Web Services which might get you started.

Upvotes: 2

Related Questions