Well, I think I understood the answer to my question:
It turns out that the default .config file svcutil.exe is called svcutil.exe , and (at least for me) it lives in this folder:
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin
I decided to simply edit this file directly (instead of /svcutilConfig with the /svcutilConfig ). I need admin rights for this.
The final contents of this file looked like this:
<?xml version="1.0" encoding="utf-8"?> <configuration> <runtime> <generatePublisherEvidence enabled="false" /> </runtime> <system.net> <defaultProxy useDefaultCredentials="true" /> </system.net> </configuration>
(with secret sauce buried in the <system.net> element.)
For this to work, I had to run the command line as an administrator, go to the folder indicated above, and run the svcutil.exe command.
Hope this helps another poor soul who is stuck in this mess! Thanks @AndrewWebb for the tips that got me going!
kmote Feb 27 '13 at 23:14 2013-02-27 23:14
source share