我正在使用Biztalk生成WCF服务。我得到的代码是:
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviorConfiguration">
<serviceDebug httpHelpPageEnabled="true" httpsHelpPageEnabled="false" includeExceptionDetailInFaults="false" />
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="false" externalMetadataLocation="" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<!-- Note: the service name must match the configuration name for the service implementation. -->
<service name="Microsoft.BizTalk.Adapter.Wcf.Runtime.BizTalkServiceInstance" behaviorConfiguration="ServiceBehaviorConfiguration">
<endpoint name="HttpMexEndpoint" address="mex" binding="mexHttpBinding" bindingConfiguration="" contract="IMetadataExchange" />
<!--<endpoint name="HttpsMexEndpoint" address="mex" binding="mexHttpsBinding" bindingConfiguration="" contract="IMetadataExchange" />-->
</service>
</services>
</system.serviceModel>
也许它不是最漂亮的配置,但它有效。问题是我不知道如何修改超时和消息最大大小,因为它只有mex端点。我很惊讶这只是mex端点的工作方式。
所以有两个问题:
答案 0 :(得分:0)
我似乎记得这些设置不在配置文件中的原因是因为绑定配置存储在biztalk本身的接收位置/发送端口设置中。因此,设置它们的方法是从接收位置适配器配置更改它们。