Dont use services unless you necessarily need them
Posted by: Pablo M. Cibraro (aka Cibrax),
on 14 May 2011 |
View original | Bookmarked: 0 time(s)
There are multiple factors or requirements that might lead you to refactor some functionality into services. Here are some examples, You have explicit requirements to distribute work across machines. This is a typical example of smart client applications (i.e. Silverlight apps), which runs a thin UI layer and have all the backend logic as part of services. You need to run code remotely in a specific machine, so a good choice is to expose that as a service. You need to expose...