With a distributed application, where you have lots of clients and one main server, should you: - Make the clients dumb and the server smart: clients are fast and non-invasive. Business rules are needed in only 1 place - Make the clients smart and the server dumb: take as much load as possible off of the server
Additional info: - Clients collect tons of data about the computer they are on. The server must analyze all of this info to determine the health of these computers - The owners of the client computers are temperamental and will shut down the clients if the client starts to consume too many resources (thus negating the purpose of the distributed app in helping diagnose problems)