XAF How to: 實現一個WCF Application Server 並配置它的客戶端應用

来源:http://www.cnblogs.com/foreachlife/archive/2016/01/28/xafmiddletier.html
-Advertisement-
Play Games

本主題描述瞭如何實現一個 WCF 中間層應用程式伺服器及如何配置 XAF客戶端連接到此伺服器。 註意 本主題演示可以由解決方案嚮導自動生成的代碼。執行操作時,如果你想要在現有的 XAF 解決方案中實現的顯示的功能。如果您要創建一個新的 XAF 解決方案,請使用嚮導。 完整的樣例項目是在 http:/


主題描述了如何實現一個 WCF 中間應用程式伺服器及如何配置 XAF客戶端連接到伺服器



註意 主題演示可以解決方案嚮導自動生成代碼執行操作如果現有的 XAF 解決方案實現顯示功能如果創建一個的 XAF 解決方案使用嚮導   完整樣例項目在 http://www.devexpress.com/example=E4599 

 

  1.打開現有的 XAF 解決方案啟用安全系統,創建幾個用戶帳戶如果沒有現有解決方案看這裡如何創建一個基於客戶端的安全 (2 層架構) 教程 2.向 XAF 解決方案添加一個控制台應用程式項目這個項目代表示例中的應用程式伺服器 3.將引用添加的 XAF 解決方案 (例如,MySolution.Module MySolution.Module.Win  MySolution.Module.Web) 模塊項目右鍵項目,單擊創建新項目,然後在對話框中選擇“添加引用......” 切換項目選項卡選擇模塊項目單擊確定

4.打開創建項目 Program.cs (Program.vb) 文件以下代碼添加 Main 方法 (在示例假定的 XAF 解決方案稱為"MySolution")。

using System;
using System.Collections.Generic;
using System.ServiceModel;
using DevExpress.Persistent.Base;
using DevExpress.Xpo;
using DevExpress.Xpo.DB;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.MiddleTier;
using DevExpress.ExpressApp.Security;
using DevExpress.ExpressApp.Security.ClientServer;
using DevExpress.ExpressApp.Security.ClientServer.Wcf;
using DevExpress.ExpressApp.Security.Strategy;
using DevExpress.ExpressApp.Web.SystemModule;
using DevExpress.ExpressApp.Win.SystemModule;
using DevExpress.ExpressApp.Xpo;
// ... 
static void Main() {
    try {
        Console.WriteLine("Starting...");
        DataSet dataSet = new DataSet();
        string connectionString = 
            "Integrated Security=SSPI;Pooling=false;Data Source=(local);Initial Catalog=MySolution";
        ValueManager.ValueManagerType = typeof(MultiThreadValueManager<>).GetGenericTypeDefinition();

        ServerApplication serverApplication = new ServerApplication();
        serverApplication.ApplicationName = "MySolution";
        serverApplication.Modules.Add(new MySolution.Module.MySolutionModule());
        serverApplication.Modules.Add(new SystemWindowsFormsModule());
        serverApplication.Modules.Add(new SystemAspNetModule());
        serverApplication.CreateCustomObjectSpaceProvider += delegate(object sender, CreateCustomObjectSpaceProviderEventArgs e) {
            e.ObjectSpaceProvider = new XPObjectSpaceProvider(connectionString, null);
        };
        serverApplication.DatabaseVersionMismatch += delegate(object sender, DatabaseVersionMismatchEventArgs e) {
            e.Updater.Update();
            e.Handled = true;
        };

        Console.WriteLine("Setup...");
        serverApplication.Setup();
        Console.WriteLine("CheckCompatibility...");
        serverApplication.CheckCompatibility();
        serverApplication.Dispose();

        Console.WriteLine("Starting server...");
        QueryRequestSecurityStrategyHandler securityProviderHandler = delegate() {
            return new SecurityStrategyComplex(
                typeof(SecuritySystemUser), typeof(SecuritySystemRole), new AuthenticationStandard());
        };

        IDisposable[] disposable;
        IDataLayer dataLayer = new SimpleDataLayer(XpoTypesInfoHelper.GetXpoTypeInfoSource().XPDictionary, 
                                         DevExpress.Xpo.DB.MSSqlConnectionProvider.CreateProviderFromString(connectionString, 
                                         DevExpress.Xpo.DB.AutoCreateOption.None, out disposable));
        SecuredDataServer dataServer = new SecuredDataServer(dataLayer, securityProviderHandler);

        ServiceHost serviceHost = new ServiceHost(new WcfSecuredDataServer(dataServer));
        serviceHost.AddServiceEndpoint(typeof(IWcfSecuredDataServer), 
            WcfDataServerHelper.CreateDefaultBinding(), "http://localhost:1451/DataServer");
        serviceHost.Open();

        Console.WriteLine("Server is started. Press Enter to stop.");
        Console.ReadLine();
        Console.WriteLine("Stopping...");
        serviceHost.Close();
        Console.WriteLine("Server is stopped.");
    }
    catch(Exception e) {
        Console.WriteLine("Exception occurs: " + e.Message);
        Console.WriteLine("Press Enter to close.");
        Console.ReadLine();
    }
}

 

註意

  1. ServerApplication.ApplicationName 屬性客戶端應用程式名稱 (即 XafApplication.ApplicationName) 相同
  2. ServerApplication.Modules 集合包含客戶應用程式直接引用模塊查看哪些客戶端應用程式要求哪些模塊,可以在 WinApplication/WebApplication 的InitializeComponent方法中找到
  3. QueryRequestSecurityStrategyHandler 對象指定用戶類型 角色類型身份驗證
  4. 服務終結點通過 ServiceHost.AddServiceEndpoint 方法添加
  5. 如果使用自定義許可權請求自定義登錄參數在用戶初始化數據伺服器之前註冊通過靜態的 WcfDataServerHelper.AddKnownType 方法
  6. 如果使用一個自定義綁定對象不要使用 WcfDataServerHelper.CreateDefaultBinding 方法自己創建綁定對象傳遞ServiceHost.AddServiceEndpoint 方法
  7. 當使用 AuthenticationActiveDirectory 時, all the methods of the application server should be invoked in the caller's context (a Windows account under which the client application is running). Refer to the Delegation and Impersonation with WCF and Security in Remoting articles in MSDN for more details on how this can be done, depending on the transport technology used. For instance, in the case of WCF, you can modify the ServiceAuthorizationBehavior.ImpersonateCallerForAllOperations property in the code of your service.

  8. 打開 Windows 窗體應用程式項目 Program.cs (Program.vb) 文件修改 Main 方法如下所示
using System.ServiceModel;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Security;
using DevExpress.ExpressApp.Security.ClientServer;
using DevExpress.ExpressApp.Security.ClientServer.Wcf;
// ... 
[STAThread]
static void Main() {
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    EditModelPermission.AlwaysGranted = System.Diagnostics.Debugger.IsAttached;
    MySolutionWindowsFormsApplication winApplication = new MySolutionWindowsFormsApplication();
    string connectionString = "http://localhost:1451/DataServer";
    try {
        WcfSecuredDataServerClient clientDataServer = new WcfSecuredDataServerClient(
            WcfDataServerHelper.CreateDefaultBinding(), new EndpointAddress(connectionString));
        ServerSecurityClient securityClient = new ServerSecurityClient(clientDataServer, new ClientInfoFactory());
        securityClient.IsSupportChangePassword = true;
        winApplication.ApplicationName = "MySolution";
        winApplication.Security = securityClient;
        winApplication.CreateCustomObjectSpaceProvider += delegate(
            object sender, CreateCustomObjectSpaceProviderEventArgs e) {
            e.ObjectSpaceProvider = new DataServerObjectSpaceProvider(clientDataServer, securityClient);
        };
        winApplication.Setup();
        winApplication.Start();
        clientDataServer.Close();
    }
    catch(Exception e) {
        winApplication.HandleException(e);
    }
}
  1. ServerSecurityClient.IsSupportChangePassword 屬性指示可以通過 ChangePasswordByUser  ResetPasswords 操作更改用戶密碼如果伺服器使用AuthenticationStandard 身份驗證屬性設置 trueIfAuthenticationActiveDirectory 使用初始化 IsSupportChangePassword 屬性因為預設 false請註意設置影響 ChangePasswordByUser  ResetPasswords 操作可見性不要授予許可權用戶的 StoredPassword 屬性創建相應成員級別許可權允許非管理用戶更改他們密碼
    • 備註:
      調試伺服器主機連接字元串"localhost"更改根據伺服器端設置(因為預設應用程式項目完成)可以通過配置應用程式對象配置文件讀取連接字元串。為簡單起見在這裡連接硬編碼的 如果使用自定義許可權請求自定義登錄參數在用戶客戶端應用程式初始化之前註冊通過靜態的 WcfDataServerHelper.AddKnownType 方法  
  2. 應用程式伺服器正在使用伺服器執行相容性檢查 XafApplication.DatabaseVersionMismatch 的事件發生無條件地引發異常編輯WinApplication.cs (WinApplication.vb) 文件以下方式修改 DatabaseVersionMismatchevent 處理程式
public partial class MySolutionWindowsFormsApplication : WinApplication {
    //... 
   private void MySolutionWindowsFormsApplication_DatabaseVersionMismatch(
        object sender, DevExpress.ExpressApp.DatabaseVersionMismatchEventArgs e) {
        throw new InvalidOperationException(
            "The application cannot connect to the specified database " +
            "because the latter does not exist or its version is older " +
            "than that of the application.");
        }
    }
}

 

 

  1. 編輯 Module.cs (Module.vb) 文件位於平臺無關模塊項目(即你的XXX.Module項目)註冊下列方式使用安全類型。(就是用戶和角色所使用的類型)

using DevExpress.ExpressApp.Security.Strategy;
// ... 
public sealed partial class MySolutionModule : ModuleBase {
    // ... 
    protected override IEnumerable<Type> GetDeclaredExportedTypes() {
        List<Type> result = new List<Type>(base.GetDeclaredExportedTypes());
        result.AddRange(new Type[] { typeof(SecuritySystemUser), typeof(SecuritySystemRole) });
        return result;
    }
}

 

上面代碼要引用 DevExpress.ExpressApp.Security.v15.2 程式集。

 

預設情況下,導航欄中不會顯示角色的列表,這個行為與2層架構不同,如果想要顯示角色列表,需要手動的在xafml中增加角色列表,列表的名稱是:"SecuritySystemRole_ListView"。

 

  現在可以運行應用伺服器客戶端應用程式。在解決方案資源管理器中應用程式伺服器項目設置啟動項目,並且運行伺服器運行客戶端應用程式右擊解決方案資源管理器應用程式項目然後選擇調試 |啟動實例顯示了伺服器客戶端

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.0 創建Attribute using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace LSUnion.Site.WebHelper { [AttributeUsag
  • .NET之死是JAVA引起的嗎?.NET為什麼會死?.NET之死預示著什麼?
  • 一.基礎篇 C#不像C++,他本身是沒有聯合Union的,但是可以通過手動控制結構體每個元素的位置來實現,這需要結合使用StructLayoutAttribute、LayoutKind以及FieldOffsetAttribute。使用它們的時候必須引用System.Runtime.InteropSe
  • 自ExcelUtility類推出以來,經過項目中的實際使用與不斷完善,現在又做了許多的優化並增加了許多的功能,本篇不再講述原理,直接貼出示例代碼以及相關的模板、結果圖,以便大家快速掌握,另外這些示例說明我也已同步到GIT中,大家可以下載與學習,不足之處,敬請見諒,謝謝! 一、ExcelUtility
  • 一 環境搭建 首先,由於RabbitMQ使用Erlang編寫的,需要運行在Erlang運行時環境上,所以在安裝RabbitMQ Server之前需要安裝Erlang 運行時環境,可以到Erlang官網下載對應平臺的安裝文件。如果沒有安裝運行時環境,安裝RabbitMQ Server的時候,會提示需要
  • 看到好文章需要分享。 最近一直在學習ASP.NET MVC的生命周期,發現ASP.NET MVC是建立在ASP.NET Framework基礎之上的,所以原來對於ASP.NET WebForm中的很多處理流程,如管道事件等,對於ASP.NET MVC同樣適用。只是MVC URLRouting Mod
  • 引用:https://msdn.microsoft.com/zh-CN/library/0s21cwxk.aspx “提取方法”是一項重構操作,提供了一種從現有成員中的代碼段創建新方法的便捷方式。 使用“提取方法”,可以通過從現有成員的代碼塊中提取一組代碼來創建新方法。提取出的新方法包含所選代碼,而
  • 轉自:http://blog.csdn.net/51357/article/details/1480599 近期在維護一個vs2008開發的項目(該項目是從Vs2013拷貝升級過來的),發現不同時期按時間順序來說,分別使用了DataGrid和GridView控制項, 下麵引用一篇文章來說說二者不同:
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...