The WCF Test Client is a really powerful tool. I can avoid creating a new console app to test my services. However, what is annoying is that I can't seem to save the services/config I add to the client. If I close it and open it again it starts fresh.

Any way to save an "instance" of the WCF Test Client... kind of like how FxCop let's you scan your binaries and save that setting to an FxCop file?

link|improve this question

Unfortunately, no, I don't think there's any such feature in the WCF Test Client. – marc_s Jul 15 '11 at 20:22
Oh that stinks. – m-y Jul 15 '11 at 20:23
The WCF Test Client is a very simple tool for simple testing - if you need more elaborate testing of web services, you should check out SoapUI - it can do a lot more (and store profiles/parameters etc. to files) – marc_s Jul 15 '11 at 20:27
feedback

1 Answer

up vote 1 down vote accepted

The default behaviour of the test client will remember the last few URLs you've used. Is that not enough?

enter image description here

link|improve this answer
Not when I'm wanting to put the Test Client on our csv with presaved settings so other developers can easily open a preconfigured WCF Test Client. Guess not though. – m-y Jul 15 '11 at 20:33
1  
Why not just write a batch file that calls the URLs: wcfTestClient.exe http://localhost/MyService.svc http://localhost/MyOtherService.svc This will start the WCF UI, but auto-add the nominated URLs. – Peter K. Jul 15 '11 at 20:38
1  
@myermian: that's a job for a tool like SoapUI - WCF Test Client isn't made for this kind of task... – marc_s Jul 15 '11 at 21:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.