解决WCF跨机器调用时发生“调用方未由服务进行身份验证”的错误
Posted Plus301
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决WCF跨机器调用时发生“调用方未由服务进行身份验证”的错误相关的知识,希望对你有一定的参考价值。
1、服务器端Web.config配置文件,增加如下部分:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_NoneSecurity" maxBufferPoolSize="12000000" maxReceivedMessageSize="12000000" useDefaultWebProxy="false">
<readerQuotas maxStringContentLength="12000000" maxArrayLength="12000000"/>
<security mode="None"/>
</binding>
</wsHttpBinding>
</bindings>
</system.serviceModel>
2、客户端app.config配置文件,修改或增加红色部分:
<wsHttpBinding> <binding name="WSHttpBinding_IService1"> <security mode="None" /> </binding> </wsHttpBinding>
以上是关于解决WCF跨机器调用时发生“调用方未由服务进行身份验证”的错误的主要内容,如果未能解决你的问题,请参考以下文章