wcf-test-client

Is it possible to force the WCF test client to accept a self-signed certificate?

I have a WCF web service running in IIS 7 using a self-signed certificate (it's a proof of concept to make sure this is the route I want to go). It's required to use SSL. Is it possible to use the WCF Test Client to debug this service without needing a non-self-signed certificate? When I try I get this error: Error: Cannot obtain M...

How to test a WCF endpoint using WCF Test Client

When I run up WCF Test Client, I only see two "endpoints" in a system - BasicHttpBinding_MyService and WSHttpBinding_MyService. Now the system accepts a multitude of different types of request, and these are passed into the endpoints in an array of Requests (Request[]) (as far as I can tell). This seems fine, but it is non-obvious how ...