我希望服务器web.config配置尽可能地与客户端匹配。所有客户都使用proxy auto-configuration script。
有没有办法在web.config中指定这个脚本文件?
答案 0 :(得分:5)
是
直接在<configuration>
:
<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy scriptLocation="--- your script location here ---" bypassonlocal="True" />
</defaultProxy>
</system.net>