2014-01-22 129 views
1

在我的WPF項目中,我使用CodeFluent來生成我的BOM和我的WCF服務應用程序。 我的WCF服務應用程序託管在單獨的服務器上。如何更改BITS主機網址

由我的WCF應用程序發送的ServiceBinaryLargeObject數據包含一個「ServerUrl」屬性。 其默認值以[http:// localhost:1027/xxxxxxxxx]開頭。

如何更改此默認BITS主機網址?

由於任何人可以幫助我對;)

回答

2

由於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>