如何更改BITS主机URL

时间:2014-01-22 08:56:07

标签: microsoft-bits codefluent

在我的WPF项目中,我使用CodeFluent生成BOM和我的WCF服务应用程序。 我的WCF服务应用程序托管在单独的服务器上。

我的WCF应用程序发送的ServiceBinaryLargeObject数据包含“ServerUrl”属性。 其默认值以[http:// localhost:1027 / xxxxxxxxx]开头。

如何更改此默认BITS主机网址?

感谢任何可以帮助我的人;)

1 个答案:

答案 0 :(得分:3)

正如CodeFluent实体文档(http://www.softfluent.com/documentation/BOM_BLOB_BITS_Url.html)中的解释,您必须在配置文件中设置bitServerUrl属性。

<configuration>
  <configSections>
    <section name="Sample" type="CodeFluent.Runtime.CodeFluentConfigurationSectionHandler, CodeFluent.Runtime"/>
  </configSections>

  <Sample connectionString="server=(local);database=Sample;Integrated Security=true"
          bitsServerUrl="http://localhost:1028/Sample/" />
</configuration>