I am little bit confused about the difference between a service and component. Can someone explain with example that what is the difference between a service and component?
|
|
|
A service can be made up of several components. Usually a service provides one complete feature that is made up by combining different components. The service's user don't need to know anything about the underlying components. User will deal only directly with the service while service internally will be interacting with the components |
|||
|
|
|
Services are applications that are (generally) designed to be long running, tied to the operations of the system rather than a user and provide a utility to other applications. Databases, SMTP, Active Directory are all examples of "Services". Components are pre-formed pieces that can be included in other applications and are not designed to operate 'on their own'. An application that references a database my use a data component (SQLClient) to communicate with a date base service (MS SQL Server). |
|||||||
|
