tags:

views:

14

answers:

2

I really loved the web based test form of asmx, because it used the browsers built in functionality to remember previously provided parameters. It was also much easier to startup for a debugging session.

Is it possible to get the WCF test tool to remember previously supplied values, or is it too primitive?

Is there another tool I should be using to get the same convenience back that was in the days of asmx that Microsoft decided to drop from the newly updated WCF?

A: 

Perhaps you could look into TDD to solve your problem instead of writing a test client. In TDD, you write unit tests before you write your business logic.

A possible scenario would be that your test is written with the values of interest.

MedicineMan
+1  A: 

For basicHttpBinding you can take a look at SoapUI.

Darin Dimitrov
Its Java, isn't it very slow?
JL
I am using it happily every day and don't think it is slower than a typical windows application.
Darin Dimitrov
I'll give it a go.
JL
Works like a charm
JL