3

I am trying to run WCFTestClient and generate configuration for service. Unfortunately I am behind proxy and I receive 407: Proxy Authentication Required

How can I run WCFTestClient to connect beind proxy

Piotr Stapp
  • 19,392
  • 11
  • 68
  • 116

1 Answers1

2

Not sure it will work or not. You can try modifying the WCFTestClient.exe.config (You can find this file - C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE depends on your VS installation) and add the following lines

<system.net>
  <defaultProxy useDefaultCredentials="true" />
</system.net>

Please make sure you have a backup of the config file. Hope it works.

Anuraj
  • 18,859
  • 7
  • 53
  • 79