扩展Biztalk 2006 R2生成的WCF服务中的超时和消息大小

时间:2010-05-20 15:09:01

标签: wcf biztalk biztalk2006r2

我正在使用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端点的工作方式。

所以有两个问题:

  1. 为什么这有用呢?
  2. 我应该添加什么来延长超时和邮件大小?

1 个答案:

答案 0 :(得分:0)

我似乎记得这些设置不在配置文件中的原因是因为绑定配置存储在biztalk本身的接收位置/发送端口设置中。因此,设置它们的方法是从接收位置适配器配置更改它们。