Web で大きなアプリケーションを開発することを計画しています。現在の計画は、ビジネス レイヤーの各クラスに WCF サービスを作成することです。これは効果的ですか?大規模な Web アプリケーションで WCF を使用できる場所と、それを使用する主な利点を知りたい
私たちはこれらのプロジェクトを持っています
1) MVC3 with Razor that handles UI
2) Class Library Project that communicate with Database
3) WCF Project
私たちが使用する方法
1)Creates UI and Model in MVC
2)Makes dll that communicate with UI (eg:Save function/Update function) using ClassLibrary Project
3)The Class Library Created is Added (Added to Bin) in WCF Project
4) Builds the WCF and Host It in Server
5) The Hosted Service is Used in MVC Project for Communication with DB
当社のテクニカル リードは、軽量で安全性が高いと言っていますが、なぜ彼がWCF
アプリケーション全体に使用すると言っているのか疑問に思っています。