我正在尝试测试使用WCF Web服务的MVC应用程序。当我使用VS2010中的开发服务器运行它时它工作正常。但是,当我在IIS7上部署它并尝试在我的控制器代码中调用任何服务方法时,我收到以下错误: (405)方法不允许
有谁知道如何解决这个问题?
我的网络配置条目如下:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IAuthenticationService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://SiteName/ServiceName/AuthenticationService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAuthenticationService"
contract="AuthService.IAuthenticationService" name="BasicHttpBinding_IAuthenticationService">
</endpoint>
</client>
</system.serviceModel>
答案 0 :(得分:0)
听起来像旧的“ASP.NET未安装或注册到您的IIS”问题尝试使用
注册它aspnet_regiis –i –enable
从命令提示符下运行管理员权限。
答案 1 :(得分:0)
Duh ... WCF服务和MVC应用程序的.NET版本不匹配! :(傻我。