Silverlight 4.0 Silverlight windows身份验证和运行fiddler

Silverlight 4.0 Silverlight windows身份验证和运行fiddler,silverlight-4.0,Silverlight 4.0,我正在silverlight应用程序中使用WindowsAuthentication 下面是我在web.config中所做的设置 <authentication mode="Windows"/> <basicHttpBinding> <binding name="ServiceBinding" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessa

我正在silverlight应用程序中使用WindowsAuthentication

下面是我在web.config中所做的设置

<authentication mode="Windows"/>



<basicHttpBinding>
    <binding name="ServiceBinding" maxBufferSize="2147483647" maxBufferPoolSize="2147483647"
      maxReceivedMessageSize="2147483647">
      <readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647"
        maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Ntlm" proxyCredentialType="None" realm=""  />
        <message clientCredentialType="UserName" algorithmSuite="Default"   />
      </security>
    </binding>
  </basicHttpBinding>

它工作得很好,但每当我运行fiddler时,应用程序都会要求输入用户名和密码!有人知道这背后的原因吗

谢谢,,
Naseem在fiddler beta 2中,有一个选项“使用代理凭据”。

或者,您可以使用以下命令自定义开发服务器的fiddler规则:

if (oSession.HostnameIs("www.example.com")){
oSession.bypassGateway = true;
}
以下是如何操作的链接: