Reputation: 82341
I feel like it should be easier to test my WCF Services.
Is there an alternative to WCF Test Client?
Something with these features:
Free is best, but if I have to pay to get a good tool I will consider it.
Upvotes: 15
Views: 11271
Reputation: 121
I am the developer of an opensource tool called WsdlUI that can be used instead of WCFTestClient. It can be integrated into Visual Studio to use instead of WCFTestClient.
It can be downloaded at https://drexyia.github.io/WsdlUI/. To use it with Visual Studio:
Go to project properies -> Debug page
Change Command Line Arguments
From: /client:"WcfTestClient.exe"
To: /client:"[PATH]WsdlUI.exe"
Upvotes: 1
Reputation: 1823
SOAPUI is the best I found so far. It can even be used to test RESTful services as well.
It has a community edition (free) and a pro edition. AFAIK, the community edition is not feature restricted. The benefits of Pro edition, besides the technical support, is the time-saving features like database-driven requests and nice UI editor for composing the request. In the community edition, you'll have to get your hands dirty and work with the xml.
Upvotes: 5
Reputation: 3428
I use WCF Storm LITE to test my WCF services. It's more user-friendly than WCF Test Client, although the free version has limited features compared to its commercial counterpart.
Upvotes: 13