This glossary supports the following titles:

SOA Governance

SOA with .NET & Azure


SOA Design Patterns


Web Service Contract Design & Versioning for SOA


SOA Principles of Service Design

Service-Oriented Architecture: Concepts, Technology, and Design

Modern SOA Infrastructure: Technology, Design, and Governance
SOA with REST: Principles, Patterns & Constraints
Next Generation SOA: A Real-World Guide to Modern Service-Oriented Computing
SOA with Java
SOA Security: Practices, Patterns, and Technologies for Securing Services
SOA and Cloud Computing: Practices, Patterns, Technologies

This glossary also supports the SOA Certified Professional (SOACP) program.

For more information, visit: www.soacp.com
and
www.soaschool.com


|
|
|

stateless (primary state condition)

|
A service is stateless when it is not consuming memory related to the temporary storage and processing of state data. Whether or not a service enters into a stateless condition is determined by the functionality of the service capability that was invoked.

For a service involved in a current service activity to be stateless often requires that the service capability functionality be designed to transition the service to a stateless condition from a stateful condition. This is accomplished via the temporary deferral and delegation of state data to other parts of the architecture.

There are three types of state data, some or all of which may need to be deferred in order for the service to be considered stateless:

• session data

• context data

• business data

The term “stateless” represents a primary state condition, the other being stateful. These conditions are associated with the Service Statelessness design principle that advocates the minimization of the stateful condition by incorporating state deferral and delegation options into the service design.


See also:

- Service Statelessness

- active (primary state)

- context (state information type)

- context data (context data type)

- context rules (context data type)

- passive (primary state)

- session (state information type)

- stateful (primary state condition)
|
|