WCF实施

时间:2010-12-03 12:48:34

标签: wcf

我正在设计ERP Web应用程序。我想知道WCF实现的最佳方法。我有2个设计。任何人都可以帮助我,或者告诉我任何其他最好的方法。

第一种方法

  Web Server(Server-1)

      UI Layer(Web Application) - (Layer-1)
      UI Handler(Class Library) - (Layer-2)

  Web Service(Server-2)

      WCF Service (WCF Service Application)
      Contract Client(Class Library)
      Contract (Class Library)
      Biz Operation Layer (Class Library)
      DB Layer (Class Library)
      Biz Entity (Class Library)

数据流

用户界面 - > UI处理程序 - >网络服务 - >合同客户 - >商务 - > D B 这里每个调用都绑定到每个层中的一个方法。

第二种方法

  Web Server(Server-1)

      UI Layer(Web Application) - (Layer-1)
      UI Handler(Class Library) - (Layer-2)

  Web Service(Server-2)

      WCF Service (WCF Service Application)
      Biz Layer (Class Library)
      DB Layer (Class Library)
      Biz Entity (Class Library)

用户界面 - > UI处理程序 - >网络服务 - >商务 - > DB

哪个最好或是否有其他可用于WCF实施的最佳方法。

先谢谢。

Palanivelrajan

1 个答案:

答案 0 :(得分:0)