Normally you add a Web Reference in the project and you're ready to consume it from there. But it turns out that I need to do it in the following way.
In my App.Config
I will be adding the WebService ( .asmx
) and WCF ( .svc
) that I need to consume, I do not know what methods they have, I do not know what parameters they ask for. What I need is to do something similar to what SoapUI
does, where "download" the definitions and build the Resquest
to send, the user fills the parameters and makes the request.
At the moment for the request I think HttpWebResquest
, but to download the definition and put together the Resquest
no. Has anyone done, read something similar to what I plan to do?
Greetings.