Reputation: 4652
I'm trying to create some tool for testing WCF services. I'm aware of such products, but the goal is creating of mine one. Main trouble is in calling wcf methods without having contracts. I've found solutions using scvutil.exe, but I need to make it on the on demand, as soon as I receive service address. Any advices or links are appreciated. Thanks.
Upvotes: 1
Views: 120
Reputation: 12680
Visual Studio provides a tool (the WcfTestClient) that will create a proxy for any WSDL based service (it doesn't have to be a WCF service). There are a few limitations with enumerations as data types and a few other quirks but it's a very useful tool. Here is the documentation for the tool.
Upvotes: 2