Microsoft Transaction Server: Difference between revisions
m Reverted edits by 201.134.69.66 to last revision by Paul Foxworthy (HG) |
|||
Line 1: | Line 1: | ||
'''Microsoft Transaction Server''' (or '''MTS''') was [[software]] that provided services to [[Component Object Model]] (COM) [[Component-based software engineering|software components]], to make it easier to create large distributed applications. The major services provided by MTS were automated [[Database transaction|transaction]] management, instance management (or ''just in time activation'') and role-based security. |
'''Microsoft Transaction Server''' (or '''MTS''') was [[software]] that provided services to [[Component Object Model]] (COM) [[Component-based software engineering|software components]], to make it easier to create large distributed applications. The major services provided by MTS were automated [[Database transaction|transaction]] management, instance management (or ''just in time activation'') and role-based security. |
||
MTS was first offered in the [[Windows NT]] 4.0 Option Pack. In [[Windows 2000]], MTS was enhanced and better integrated with the operating system and [[COM]], and was renamed [[COM+]]. COM+ added [[object pool |
MTS was first offered in the [[Windows NT]] 4.0 Option Pack. In [[Windows 2000]], MTS was enhanced and better integrated with the operating system and [[COM]], and was renamed [[COM+]]. COM+ added [[object pool]]ing, [[Loose coupling|loosely-coupled events]] and user-defined simple transactions (compensating resource managers) to the features of MTS. |
||
COM+ is still provided with [[Windows Server 2003]] and [[Windows Server 2008]], and the Microsoft [[.NET Framework]] provides a wrapper for COM+ in the EnterpriseServices namespace. The [[Windows Communication Foundation]] (WCF) provides a way of calling COM+ applications with [[web services]]. However, COM+ is based on COM, and Microsoft's strategic software architecture is now web services and .NET, not COM. There are pure .NET-based alternatives for many of the features provided by COM+, and in the long term it is likely COM+ will be phased out. |
COM+ is still provided with [[Windows Server 2003]] and [[Windows Server 2008]], and the Microsoft [[.NET Framework]] provides a wrapper for COM+ in the EnterpriseServices namespace. The [[Windows Communication Foundation]] (WCF) provides a way of calling COM+ applications with [[web services]]. However, COM+ is based on COM, and Microsoft's strategic software architecture is now web services and .NET, not COM. There are pure .NET-based alternatives for many of the features provided by COM+, and in the long term it is likely COM+ will be phased out. |
||
Line 14: | Line 14: | ||
*MTS clients |
*MTS clients |
||
*Auxiliary systems like: |
*Auxiliary systems like: |
||
**[[Component Object Model|COM]] [[runtime]] services |
**[[Component Object Model|COM]] [[Run time (computing)|runtime]] services |
||
**the [[Service Control Manager]] (SCM) |
**the [[Service Control Manager]] (SCM) |
||
**the Microsoft [[Distributed Transaction Coordinator]] (MS-DTC) |
**the Microsoft [[Distributed Transaction Coordinator]] (MS-DTC) |
||
Line 48: | Line 48: | ||
* [http://www.microsoft.com/technet/archive/transsrv/quicktr.mspx Quick Tour of Microsoft Transaction Server] |
* [http://www.microsoft.com/technet/archive/transsrv/quicktr.mspx Quick Tour of Microsoft Transaction Server] |
||
* [http://support.microsoft.com/kb/q262187/ Interpreting the MTS events in the event log] |
* [http://support.microsoft.com/kb/q262187/ Interpreting the MTS events in the event log] |
||
⚫ | |||
[[Category:Windows components]] |
[[Category:Windows components]] |
||
Line 55: | Line 57: | ||
[[Category:Software components]] |
[[Category:Software components]] |
||
[[Category:Transaction processing]] |
[[Category:Transaction processing]] |
||
⚫ | |||
[[ja:Microsoft Transaction Server]] |
[[ja:Microsoft Transaction Server]] |
Revision as of 18:10, 13 August 2009
Microsoft Transaction Server (or MTS) was software that provided services to Component Object Model (COM) software components, to make it easier to create large distributed applications. The major services provided by MTS were automated transaction management, instance management (or just in time activation) and role-based security.
MTS was first offered in the Windows NT 4.0 Option Pack. In Windows 2000, MTS was enhanced and better integrated with the operating system and COM, and was renamed COM+. COM+ added object pooling, loosely-coupled events and user-defined simple transactions (compensating resource managers) to the features of MTS.
COM+ is still provided with Windows Server 2003 and Windows Server 2008, and the Microsoft .NET Framework provides a wrapper for COM+ in the EnterpriseServices namespace. The Windows Communication Foundation (WCF) provides a way of calling COM+ applications with web services. However, COM+ is based on COM, and Microsoft's strategic software architecture is now web services and .NET, not COM. There are pure .NET-based alternatives for many of the features provided by COM+, and in the long term it is likely COM+ will be phased out.
Architecture
A basic MTS architecture is made up of:
- The MTS Executive (mtxex.dll)
- The Factory Wrappers and Context Wrappers for each component
- The MTS Server Component
- MTS clients
- Auxiliary systems like:
- COM runtime services
- the Service Control Manager (SCM)
- the Microsoft Distributed Transaction Coordinator (MS-DTC)
- the Microsoft Message Queue (MSMQ)
- the COM-Transaction Integrator (COM-TI)
- etc.
COM components that run under the control of the MTS Executive are called MTS components. In COM+, they are referred to as COM+ Applications. MTS components are in-process DLLs. MTS components are deployed and run in the MTS Executive which manages them. As is usual with COM components, an object implementing the IClassFactory interface serves as a Factory Object to create new instances of these components.
MTS inserts a Factory Wrapper Object and an Object Wrapper between the actual MTS object, and its Client. This interposing of wrappers is called interception. Whenever the client makes a call to the MTS component, the Wrappers (Factory and Object) intercept the call and inject their own instance management algorithm called the Just In Time Activation (JITA) into the call. The wrapper then makes this call on the actual MTS component.
In addition to this, based on the information from the component's deployment properties, transaction logic and security checks are also done in these wrapper objects.
For every MTS-hosted object, there also exists a Context Object which implements the IObjectContext interface. The Context Object maintains specific information about that object such as its transactional information, security information and deployment information. Methods in the MTS component call into the Context Object through its IObjectContext interface.
In MTS, the actual middle-tier MTS object is not created until the call from a client reaches the container. Since the object is not running all the time, it does not use up a lot of system resources (even though an object wrapper and skeleton for the object do persist).
As soon as the call comes in from the client, the MTS wrapper process activates its Instance Management algorithm called JITA. The actual MTS object is created "Just In Time" to service the request from the wrapper. And when the request is serviced and the reply is sent back to the client, the component either calls SetComplete()/SetAbort(), or its transaction ends, or the client calls Release() on the reference to the object, the actual MTS object is destroyed. In short, MTS is a stateless component model.
Generally, this is what happens on the Server when a client requests services from a typical MTS component:
- Acquire a database connection.
- Read the component's state from either the Shared Property Manager or from an already existing object or from the client.
- Perform the business logic.
- Write the component's changed state, if any, back to the database.
- Close and release the database connection.
- Vote on the result of the transaction. MTS components do not directly commit transactions, rather they communicate their success or failure to MTS.
It is thus possible to implement high latency resources as asynchronous resource pools, which should take advantage of the stateless JIT activation afforded by the middleware server.