I am reading a lot of architecture (N-Layered and DDD) yet most of the articles are about web site architecture and develop mostly windows services.
Can the architecture be used the same way?
| |||||
feedback
|
closed as not a real question by Teoman Soygul, Mattias Jakobsson, Oded, Andrew Barber, ChrisF Nov 18 '11 at 12:51
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
The primary goal of "layers" in software architectures are to separate concerns; your program logic should be separate from your data persistence, and from your user interface. A Windows Service will not have a UI, but you can still gain efficiency, supportability and reduce the impact of future changes by separating your functionality logically. For example:
So most of the Web architecture concepts you read about can be applied, and most of the tools can be used for Windows services as well. | |||
|
feedback
|
|
Yes of course, except the Windows Service will likely not have much of a UI tier, if at all. Just a lightweight runnner method or so. | |||
|
feedback
|
|
Although the services are different as they do not have a UI element to them, however there are ways to use the principles that apply in (N-Layered, DDD) i.e. development principles. So for e.g. Services Share Schema and Contract, Not Class i.e. they are designed on Interfaces so a windows service can be a REST BASED service as well as a WCF Service but than again it can also call a repository underneath. | |||
|
feedback
|