Xander
Xander

Reputation: 9171

WCF Client tester and clientcredentials

Trying to access my service with WCF tester... but I get an error. The username is not provided. Specify username in ClientCredentials.

How can I specify the username?

Upvotes: 3

Views: 4163

Answers (1)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364249

You can't. If you defined a service secured with username and password you can't test it in WCF test client because this configuration is not supported (check not supported features).

Upvotes: 7

Related Questions