我最近對其中包含wcf服務的正在運行的Web應用程序進行了更改。發佈件事後,我得到這個服務錯誤的安全設置要求「匿名」身份驗證,但它沒有爲承載此服務的IIS應用程序啓用..WCF安全錯誤
我一直在尋找的淨在過去的五年時間試圖讓在這個
我anoynous授權選中正面或反面......
這裏是我的web.config中的網絡服務部分,請幫助!
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IService1" >
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<!--http://localhost:2083/Service1.svc-->
<endpoint address="" binding="wsHttpBinding"
bindingConfiguration="WSHttpBinding_IService1" contract="ServiceReference1.IService1"
name="WSHttpBinding_IService1">
<identity>
<dns value="issupport03" />
</identity>
</endpoint>
</client>
<services>
<service name="WcfService1.AjaxWcf">
<endpoint address="" behaviorConfiguration="WcfService1.AjaxWcfAspNetAjaxBehavior"
binding="webHttpBinding" contract="WcfService1.AjaxWcf" />
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="WcfService1.AjaxWcfAspNetAjaxBehavior">
<enableWebScript />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="WcfService1.AjaxWcfAspNetAjaxBehavior">
<serviceDebug includeExceptionDetailInFaults="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
請修改您的標題;你的標題非常*非常討厭 – Graviton 2009-12-10 04:08:41
如果你覺得標題很煩人,我很抱歉;告訴我,你覺得應該是什麼? – wali 2009-12-10 23:56:57
我冒昧地改變它。您不應該在與「緊急」或「請求幫助」等問題沒有直接關係的標題中添加任何內容。此外,感嘆號相當分散注意力。 – 2009-12-11 00:56:39