我正在寻找解决我遇到的WCF问题。我对WCF很新,所以我不确定究竟发生了什么。
我正在使用Visual Studio 2010并执行了新网站 - > WCF服务。我创建了我的服务,在配置文件中,如果我设置aspNetCompatibilityEnabled="true"
,我会在通过网络浏览器访问服务时出现此错误。
The service cannot be activated because it does not support ASP.NET compatibility.
ASP.NET compatibility is enabled for this application. Turn off ASP.NET compatibility mode in the web.config
or add the AspNetCompatibilityRequirements attribute to the service type with RequirementsMode
setting as 'Allowed' or 'Required'.
我不明白这意味着什么。 aspNetCompatibilityEnabled="true"
解决此问题时,为什么[AspNetCompatibilityRequirements(RequirementsMode=AspNetCompatibilityRequirementsMode.Allowed)]
会导致此错误。
如有必要,这是我的配置文件:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="Off"/>
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="LargeBuffer" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" />
</basicHttpBinding>
</bindings>
<services>
<service name="Services.Exporter">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="LargeBuffer"
contract="Services.IExporter" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment
multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
所以我的问题是,为什么添加Compatibility属性会解决这个问题?另外,为什么有必要使用silverlight呢?
答案 0 :(得分:36)
在配置文件中将aspNetCompatibilityEnabled
设置为true
时,表明您的服务将参与ASP.NET管道;因此可以使用ASP.NET会话等项目。如果是这种情况,您需要适当地修饰您的服务,因为默认情况下ASP.NET兼容模式设置为false。
因此,通过使用RequirementsMode
Allowed
来解析您的服务实施,您会说出一个幸福的中间立场,基本上说您的服务并不关心aspNetCompatibility
模式是什么(对或错)。如果您的RequirementsMode
为Required
,那么您需要将配置aspNetCompatibilityEnabled
设置为true;如果您的RequirementsMode
设置为NotAllowed
,则相反。
(如果您使用RequirementsMode of Allowed的快乐中间点,则可以通过检查静态ServiceHostingEnvironment.AspNetCompatibilityEnabled属性来检查服务实现是否启用了aspNetCompatibilityEnabled。)
Silverlight必须依赖于ASP.NET管道(我不是Silverlight开发人员),这就是为什么你需要在配置和服务中启用这种兼容模式才能让Silverlight调用它们应用
查看有关此here的MSDN文档。要知道的是,如果你不需要ASP.NET管道好东西,那么你不需要装饰你的服务或在你的配置中设置aspNetCompatibilityEnabled设置(它们默认是关闭的。)