• <menu id="w2i4a"></menu>
  • logo 報(bào)表生成器FastReport .Net程序員手冊(cè)
    文檔首頁(yè)>>報(bào)表生成器FastReport .Net程序員手冊(cè)>>報(bào)表生成器FastReport .Net程序員手冊(cè):使用FastReport.Service.dll創(chuàng)建Web服務(wù)

    報(bào)表生成器FastReport .Net程序員手冊(cè):使用FastReport.Service.dll創(chuàng)建Web服務(wù)


    FastReport .Net是適用于Windows Forms,ASP.NET,MVC和.NET Core的全功能報(bào)表解決方案。它可以在Microsoft Visual Studio 2005-2019中使用。支持.Net Framework 2.0-4.x,.NET Core 3.0及以上版本。

    在FastReport .NET 2021.1的新版本中,我們實(shí)現(xiàn)了對(duì).NET 5的支持。添加了新消息-Deutsce Post Leitcode。將RTF轉(zhuǎn)換為報(bào)告對(duì)象的算法已獲得顯著改進(jìn)。數(shù)字的新功能。歡迎下載體驗(yàn)。(單擊下方按鈕下載)

    立即點(diǎn)擊下載FastReport.NET v2021.1最新版

    Fastreport.NET在線購(gòu)買價(jià)優(yōu)惠,專享85折起!趕緊加入購(gòu)物清單吧!

    使用FastReport .Net提供的庫(kù)FastReport.Service.dll(WCF服務(wù)庫(kù))實(shí)現(xiàn)網(wǎng)絡(luò)服務(wù)有一個(gè)簡(jiǎn)單的方法。

    我們的示例是基于創(chuàng)建一個(gè)具有Web服務(wù)功能的簡(jiǎn)單的Web應(yīng)用程序,但您可以基于.NET Framework 4.0或更高版本修改您現(xiàn)有的項(xiàng)目。

    運(yùn)行Visual Studio并在.NET Framework 4.0下創(chuàng)建一個(gè)新的ASP.NET Web應(yīng)用程序項(xiàng)目。

    添加對(duì)庫(kù)FastReport.dll,F(xiàn)astReport.Bars.dll,F(xiàn)astReport.Service.dll的引用在站點(diǎn)根目錄下創(chuàng)建一個(gè)名稱為ReportService.svc的新文本文件。

    在文件中添加以下幾行內(nèi)容。
    <%@ ServiceHost Service =“ FastReport.Service.ReportService”%> <%@程序集名稱=“ FastReport.Service”%>
    :web.config,在<配置>部分添加這段代碼。
    <appSettings> <!-包含報(bào)告的文件夾的路徑-> <add key =“ FastReport.ReportsPath” value =“ C:\ Program files \ FastReports \ FastReport.Net \ Demos \ WCF“ /> <!-報(bào)告的連接字符串名稱-> <add key =“ FastReport.ConnectionStringName” value =“ FastReportDemo” /> <!-- Comma-separated list of available formats PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,
    MHT,CSV,DBF,XML,TXT,FPX.
    You can delete any or change order in this list. -->
    <add key="FastReport.Gear" value="PDF,DOCX,XLSX,PPTX,RTF,ODS,ODT,MHT,CSV,DBF,
    XML,TXT,FPX" />
    </appSettings>
    <connectionStrings>
    <add name="FastReportDemo" connectionString="XsdFile=;XmlFile=C:\Program
    Files\FastReports\FastReport.Net\Demos\Reports\nwind.xml"/>
    </connectionStrings>
    <system.serviceModel>
    <services>
    <service behaviorConfiguration="FastReportServiceBehavior" name="FastReport.
    Service.ReportService">
    <endpoint address="" binding="wsHttpBinding" contract="FastReport.Service.
    IFastReportService">
    <identity>
    <dns value="localhost" />
    </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding"
    contract="IMetadataExchange" />
    </service>
    </services>
    <behaviors>
    <serviceBehaviors>
    <behavior name="FastReportServiceBehavior">
    <serviceMetadata httpGetEnabled="True" />
    <serviceDebug includeExceptionDetailInFaults="True" />
    </behavior>
    </serviceBehaviors>
    </behaviors>
    <bindings>
    <basicHttpBinding>
    <binding messageEncoding="Mtom"
    closeTimeout="00:02:00" openTimeout="00:02:00"
    receiveTimeout="00:10:00" sendTimeout="00:02:00"
    maxReceivedMessageSize="67108864" maxBufferSize="65536"
    transferMode="Streamed">
    <security mode="None">
    <transport clientCredentialType="None" />
    </security>
    </binding>
    </basicHttpBinding>
    </bindings>
    </system.serviceModel>
    "FastReport.ReportsPath "這個(gè)鍵應(yīng)該包含一個(gè)報(bào)告的文件夾的路徑,你可以把它設(shè)置為演示文件夾"\FastReport.Net\Demos/WCF"。例如,你可以將其設(shè)置為演示文件夾"\FastReport.Net\Demos\WCF"。

    鍵 "FastReport.ConnectionStringName "應(yīng)該包含連接字符串名稱。這一行應(yīng)該在<connectionStrings>部分注冊(cè)。

    讓我們運(yùn)行我們的網(wǎng)站,通過訪問文件ReportService.svc來檢查Web服務(wù)的可用性。

    當(dāng)你在服務(wù)器上部署項(xiàng)目時(shí),一定要檢查文件FastReport.dll,F(xiàn)astReport.Bars.dll、FastReport.Service.dll是否在文件夾\bin中。

    客戶端程序的例子可以在文件夾 \FastReport.Net/Demos/C#/WCFClient 和 \FastReport.Net/Demos/C#/WCFWebClient 中找到。在Visual Studio中打開每個(gè)項(xiàng)目,右擊ReportService,在彈出的對(duì)話框中選擇配置服務(wù)參考。


    在配置窗口中指定現(xiàn)有Web服務(wù)的地址。

    還想要更多嗎?可以您點(diǎn)擊閱讀【FastReport的報(bào)表2020最新資源盤點(diǎn)】,查找需要的教程資源。讓人興奮的是FastReport的.NET報(bào)表正在慧都網(wǎng)火熱銷售中!低至3701元型態(tài)起!> >查看價(jià)格詳情

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();