Webservice dynamic invoke + get raw data

Viewed 1317

I use the following code to invoke a webservice from wsdl dynamically, which is working perfectly:(see docs)

Now I want to have the raw data from the response. I found the following: (Docs)

But to use that example I need a place to add the method attribute of the extension. Because I invoke the webservice method through reflection, I don't have the method definition in my code.

On the previous webpage they are talking about creating a soapextension to capture the raw messages. But where do I need to apply the extension in the first code, to have a dynamic webservice invoker with the possibility to request the raw data?

1 Answers
Related