以下是VS2012中新WCF服务应用程序的web.config的默认布局。
令我困惑的是,它似乎与在线任何示例或教程不匹配。没有定义端点或绑定,但可以调用该服务。
我在尝试增加MaxReceivedMessageSize属性时遇到了问题 - 我用谷歌搜索它并且没有线索在我的web.config中查找。
有人能指出我为什么这么奇怪的布局正确的方向?
我希望它看起来更像This SO question about setting MaxReceivedMessageSize甚至是像Michelle Bustamante这样的WCF教程,这就是我最初学习WCF的方式。
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
答案 0 :(得分:3)
从.NET 4.0开始,WCF引入了默认端点和绑定的概念,允许开发人员创建服务,而无需在配置文件中定义大量内容。
发布的配置文件的目标是4.5,这就是为什么你会看到这样一个裸WCF配置的原因。如果您需要增加maxMessageSize
,则需要在配置中明确定义它。
您可以通过将绑定定义设置为默认值(通过省略name
元素上的binding
属性)或创建端点并显式分配您通过bindingConfig
属性。
请参阅A Developer's Introduction to Windows Communication Foundation 4。
您还可以查看我之前的答案,其中包含示例:https://stackoverflow.com/a/16099054/745969