开发者

Web application architecture question

We're planning to develop a medium - larger sized web appliaction

  • mostly CRUD operations
  • reporting
  • intranet/internet ready

Someone had an idea to split the application into two separete solutions

  1. ASP.NET Web application - frontend
  2. Core application - data access,domain logic.. hosted in a windows service

The communication would be realized with WCF (tcp,named pipes)

I'm wondering what are the cons and pros of this solution ?

Mostly I'm worried about that the development proces will开发者_如何学运维 get to complex. All this communication over WCF.

Could you please share some thoughs or have you any experiences with a similar project ?


This is one way to look at it, but if you code your application in a 'standard' n-tier fashion, so that the web front end is not relying on concrete classes from your back end, you 'could' put this in later on if needed, but doing it up front 'just in case' adds a lot of complexity to your system.

Another approach is the ability to put your application in a web farm with a load balancer - this reduces your code complexity and allows you scale out as required.

(I'd also note that 100 concurrent users isn't really all that large).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜