Dear all,
I have a wsdl file and a detailed document about all the elements in every request and response from a web-service provider. My job is to compose around 40 requests and parse corresponding responses.
More specifically, our platform submits the requests and gets responses from the service, so for me, as an application developer, I only need to compose soap requests and pass them as String to the platform. I also get response as String from the platform.
I tried StringBuilder, but it looks pretty primitive. It has to be a better way to do it.
Can I put all the requests in an xml document and somehow generate requests from it?
Or even better, is it possible to generate requests from the wsdl file?
Thanks,
Sarah