Recent from talks
Nothing was collected or created yet.
Web service
View on WikipediaA web service (WS) is either:
- a service offered by an electronic device to another electronic device, communicating with each other via the Internet, or
- a server running on a computer device, listening for requests at a particular port over a network, serving web documents (HTML, JSON, XML, images).[citation needed]
In a web service, a web technology such as HTTP is used for transferring machine-readable file formats such as XML and JSON.
In practice, a web service commonly provides an object-oriented web-based interface to a database server, utilized for example by another web server, or by a mobile app, that provides a user interface to the end-user. Many organizations that provide data in formatted HTML pages will also provide that data on their server as XML or JSON, often through a Web service to allow syndication. Another application offered to the end-user may be a mashup, where a Web server consumes several Web services at different machines and compiles the content into one user interface.
Web services (generic)
[edit]Asynchronous JavaScript and XML
[edit]Asynchronous JavaScript and XML (AJAX) is a dominant technology for Web services. Developing from the combination of HTTP servers, JavaScript clients and Plain Old XML (as distinct from SOAP and W3C Web Services), now it is frequently used with JSON as well as, or instead of, XML.
REST
[edit]Representational State Transfer (REST) is an architecture for well-behaved Web services that can function at Internet scale.
In a 2004 document, the W3C sets following REST as a key distinguishing feature of Web services:
We can identify two major classes of Web services:
- REST-compliant Web services, in which the primary purpose of the service is to manipulate XML representations of Web resources using a uniform set of stateless operations; and
- arbitrary Web services, in which the service may expose an arbitrary set of operations.
— W3C, Web Services Architecture[1]
Technologies and protocols related to web services using markup languages
[edit]There are a number of Web services that use markup languages:
- JSON-RPC.
- JSON-WSP
- Representational state transfer (REST) versus remote procedure call (RPC)
- Simple Object Access Protocol (SOAP)
- Web Services Conversation Language (WSCL)
- Web Services Description Language (WSDL), developed by the W3C
- Web Services Flow Language (WSFL), superseded by BPEL
- Web template
- WS-MetadataExchange
- XML Interface for Network Services (XINS), provides a POX-style web service specification format
Web API
[edit]A Web API is a development in Web services where emphasis has been moving to simpler representational state transfer (REST) based communications.[2] Restful APIs do not require XML-based Web service protocols (SOAP and WSDL) to support their interfaces.
W3C Web services
[edit]In relation to W3C Web services, the W3C defined a Web service as:
A web service is a software system designed to support interoperable machine-to-machine interaction over a network. It has an interface described in a machine-processable format (specifically WSDL). Other systems interact with the web service in a manner prescribed by its description using SOAP-messages, typically conveyed using HTTP with an XML serialization in conjunction with other web-related standards.
— W3C, Web Services Glossary[3]
W3C Web Services may use SOAP over HTTP protocol, allowing less costly (more efficient) interactions over the Internet than via proprietary solutions like EDI/B2B. Besides SOAP over HTTP, Web services can also be implemented on other reliable transport mechanisms like FTP. In a 2002 document, the Web Services Architecture Working Group defined a Web services architecture, requiring a standardized implementation of a "Web service."
Explanation
[edit]
The term "Web service" describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet Protocol backbone. XML is the data format used to contain the data and provide metadata around it, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI lists what services are available.
A Web service is a method of communication between two electronic devices over a network. It is a software function provided at a network address over the Web with the service always-on as in the concept of utility computing.
Many organizations use multiple software systems for management.[citation needed] Different software systems often need to exchange data with each other, and a Web service is a method of communication that allows two software systems to exchange this data over the Internet. The software system that requests data is called a service requester, whereas the software system that would process the request and provide the data is called a service provider.
Different software may use different programming languages, and hence there is a need for a method of data exchange that doesn't depend upon a particular programming language. Most types of software can, however, interpret XML tags. Thus, Web services can use XML files for data exchange.
Rules for communication with different systems need to be defined, such as:
- How one system can request data from another system.
- Which specific parameters are needed in the data request.
- What would be the structure of the data produced. (Normally, data is exchanged in XML files, and the structure of the XML file is validated against a .xsd file.)
- What error messages to display when a certain rule for communication is not observed, to make troubleshooting easier.
All of these rules for communication are defined in a file called WSDL (Web Services Description Language), which has a .wsdl extension. (Proposals for Autonomous Web Services (AWS) seek to develop more flexible Web services that do not rely on strict rules.[a])
A directory called UDDI (Universal Description, Discovery, and Integration) defines which software system should be contacted for which type of data. So when one software system needs one particular report/data, it would go to the UDDI and find out which other systems it can contact for receiving that data. Once the software system finds out which other systems it should contact, it would then contact that system using a special protocol called SOAP (Simple Object Access Protocol). The service provider system would first validate the data request by referring to the WSDL file, and then process the request and send the data under the SOAP protocol.
Automated design methods
[edit]
Automated tools can aid in the creation of a Web service. For services using WSDL, it is possible to either automatically generate WSDL for existing classes (a bottom-up model) or to generate a class skeleton given existing WSDL (a top-down model).
- A developer using a bottom-up model writes implementing classes first (in some programming language) and then uses a WSDL generating tool to expose methods from these classes as a Web service. This is simpler to develop but may be harder to maintain if the original classes are subject to frequent change.[5]
- A developer using a top-down model writes the WSDL document first and then uses a code generating tool to produce the class skeleton, to be completed as necessary. This model is generally considered more difficult but can produce cleaner designs and is generally more resistant to change. As long as the message formats between the sender and receiver do not change, changes in the sender and receiver themselves do not affect the Web service. The technique is also referred to as contract first since the WSDL (or contract between sender and receiver) is the starting point.[6]
- A developer using a Subset WSDL (SWSDL)[7] (i.e. a WSDL with the subset operation in the original WSDL) can perform Web service testing and top-down development.
Criticism
[edit]Critics of non-RESTful Web services often complain that they are too complex[8] and based upon large software vendors or integrators, rather than typical open source implementations.
There are also concerns about performance due to Web services' use of XML as a message format and SOAP/HTTP in enveloping and transporting.[9]
Regression testing of Web services
[edit]Functional and non-functional testing of Web services is done with the help of WSDL parsing. Regression testing is performed by identifying the changes made to upgrade software. Web service regression testing needs can be categorized in three different ways, namely, changes in WSDL, changes in the code, and selective re-testing of operations. We can capture the above three needs in three intermediate forms of Subset WSDL,[7] namely, Difference WSDL (DWSDL), Unit WSDL (UWSDL), and Reduced WSDL (RWSDL), respectively. These three Subset WSDLs are then combined to form Combined WSDL (CWSDL) that is further used for regression testing of the Web service. This will help in Automated Web Service Change Management (AWSCM),[10] by performing the selection of the relevant test cases to construct a reduced test suite from the old test suite. [11]
Web services testing can also be automated using several test automation tools like SoapUI, Oracle Application Testing Suite (OATS),[12][13] Unified Functional Testing, Selenium, etc.
Web service change management
[edit]Work-related to the capture and visualization of changes made to a Web service. Visualization and computation of changes can be done in the form of intermediate artifacts (Subset WSDL).[7] The insight on the computation of change impact is helpful in testing, top-down development and reduce regression testing. AWSCM[10] is a tool that can identify subset operations in a WSDL file to construct a subset WSDL.
Discovering and Searching for Web Services
[edit]While UDDI was intended to serve as a service directory and become the means to discovering web services, many vendors discontinued their UDDI solutions or repositories between 2005 and 2008, including Microsoft, SAP, IBM, among others.[14][15] A key study published in WWW2008 Conference (Beijing, China)[16] presented the state of SOAP-based web services and concluded that only 63% of the available SOAP-based web services at the time of the study were actually active or can be invoked. The study also found that search engines were becoming an ideal source for searching for web services compared to that of service registries like the UDDI due its design complexity.[17]
See also
[edit]Notes
[edit]- ^ Compare: Oya 2008, "Under the current Web Services, […] stakeholder systems must follow the predefined rules for a particular business service including those about business protocols to send/receive messages and about system operation. […] More flexible mechanism is desired where freely built and autonomously running systems can exchange business messages without pre-agreed strict rules. We call it Autonomous Web Services (AWS) and proposed the framework called Dynamic Model Harmonization (DMH) with its algorithm, which dynamically adjusts different business process models between systems […]."[4]
References
[edit]- ^ "Web Services Architecture § Relationship to the World Wide Web and REST Architectures". W3C. Retrieved 11 November 2017.
- ^ Benslimane, D.; Dustdar, S.; Sheth, A. (2008). "Services Mashups: The New Generation of Web Applications". IEEE Internet Computing. 10 (5): 13–15. doi:10.1109/MIC.2008.110. S2CID 8124905.
- ^ "Web Services Glossary § Web service". W3C. 11 February 2004. Retrieved 24 January 2017.
- ^ Oya, Makoto (2008-09-02). "Autonomous Web Services Based on Dynamic Model Harmonization". In Oya, Makoto; Uda, Ryuya; Yasunobu, Chizuko (eds.). Towards Sustainable Society on Ubiquitous Networks: The 8th IFIP Conference on E-Business, E-Services, and E-Society (I3E 2008), September 24 – 26, 2008, Tokyo, Japan. IFIP Advances in Information and Communication Technology. Vol. 286. Springer Science & Business Media (published 2008). p. 139. ISBN 9780387856902. Retrieved 2015-08-19.
- ^ "Creating bottom-up Web services". Eclipse. Retrieved 11 November 2017.
- ^ "Creating top-down Web services". Eclipse. Retrieved 11 November 2017.
- ^ a b c Chaturvedi, Animesh (2014). Subset WSDL to Access Subset Service for Analysis. 2014 IEEE 6th International Conference on Cloud Computing Technology and Science. p. 688. doi:10.1109/CloudCom.2014.149. ISBN 978-1-4799-4093-6.
- ^ Bray, Tim (2004-10-28). "WS-Pagecount". TBray.org. Retrieved 2011-04-22.
- ^ Gray, N. A. B. (2005). "Performance of Java Middleware – Java RMI, JAX-RPC, and CORBA". University of Wollongong: 31–39.
The results presented in this paper show that the nature of response data has a greater impact on relative performance than has been allowed for in most previous studies.
- ^ a b Chaturvedi, Animesh (2014). Automated Web Service Change Management AWSCM - A Tool. 2014 IEEE 6th International Conference on Cloud Computing Technology and Science. p. 715. doi:10.1109/CloudCom.2014.144. ISBN 978-1-4799-4093-6.
- ^ Chaturvedi, Animesh; Gupta, Atul (2013). A tool-supported approach to perform efficient regression testing of Web services. 2013 IEEE 7th International Symposium on the Maintenance and Evolution of Service-Oriented and Cloud-Based Systems. p. 50. doi:10.1109/MESOCA.2013.6632734. ISBN 978-1-4673-4889-8.
- ^ Oracle Application Testing Suite
- ^ Web Services Testing using Oracle Application Testing Suite
- ^ Krill, Paul (2005-12-16). "Microsoft, IBM, SAP discontinue UDDI registry effort". InfoWorld. Retrieved 2022-05-28.
- ^ QuinnRadich (27 April 2021). "Removal of UDDI Services from Server Operating System – Win32 apps". docs.microsoft.com. Retrieved 2022-05-28.
- ^ "WWW2008 – WWW 2008: 17th International World Wide Web Conference (Welcome)". Archived from the original on 2022-10-04. Retrieved 2022-05-28.
- ^ Al-Masri, Eyhab; Mahmoud, Qusay H. (2008-04-21). "Investigating web services on the world wide web". Proceedings of the 17th international conference on World Wide Web. WWW '08. New York, NY, USA: Association for Computing Machinery. pp. 795–804. doi:10.1145/1367497.1367605. ISBN 978-1-60558-085-2. S2CID 12570844.
External links
[edit]- Messaging Design Pattern Archived 2018-10-09 at the Wayback Machine documentation at SOA Patterns
- The Web Services Activity page at W3C
- Web Services Architecture, the W3C Working Group Note (11 February 2004)
- Investigating Web Services on the World Wide Web, the analysis presented at the WWW2008 conference
- Guide to Secure Web Services (SP 800-95) at NIST
Web service
View on GrokipediaDefinition and Fundamentals
Core Concepts
A web service is a software system designed to support interoperable machine-to-machine interaction over a network, with an interface described in a machine-processable format and interactions typically using standardized messaging protocols.[1] This design enables applications developed on diverse platforms to communicate seamlessly without requiring custom integrations.[7] Fundamental principles of web services include loose coupling, which minimizes dependencies between components to enhance flexibility and maintainability; platform independence, allowing services to operate across different operating systems and hardware via universal protocols; and adherence to open standards for communication, ensuring broad accessibility and interoperability.[8][9] These principles facilitate the creation of scalable, vendor-neutral systems that can evolve independently. Unlike web pages, which are intended for human consumption and render visual interfaces in browsers, web services exchange structured data formats such as XML or JSON between applications without providing user interfaces.[10] This distinction positions web services as backend enablers for automated processes rather than front-end experiences. Common use cases for web services include integrating e-commerce platforms for real-time inventory and payment processing across vendor systems, powering cloud computing services through API-driven resource provisioning, and supporting distributed systems by enabling data synchronization in large-scale networks.[11] Web services can adopt architectural styles such as SOAP or REST to structure these interactions.[12]Key Characteristics
Many web services, particularly those following the REST architectural style, are designed to be stateless, wherein each client request includes all necessary information for the server to process it independently of any prior exchanges. This design promotes scalability by avoiding the need for servers to retain session state across interactions, thereby reducing resource overhead and enhancing fault tolerance in distributed systems.[2] A key attribute enabling long-term viability is extensibility, which allows developers to incorporate additional functionalities, such as custom headers or security mechanisms, into service definitions without invalidating existing contracts. This is achieved through the flexible structure of underlying standards like XML, where extensions can be added modularly to support evolving requirements while maintaining backward compatibility. The Web Services Architecture emphasizes this trait to foster adaptability across diverse implementations and frameworks.[13] Discoverability ensures that web services can be located and invoked by potential consumers without prior knowledge of their endpoints, originally through centralized registries like UDDI (Universal Description, Discovery, and Integration). Although UDDI is now largely historical, modern practices utilize service registries, API documentation standards such as OpenAPI, and tools like Consul for dynamic discovery in cloud and microservices environments. UDDI provided a standardized mechanism for publishing service descriptions in WSDL format, enabling queries based on business categories, technical interfaces, or geographic specifications, thus supporting dynamic service composition in enterprise environments.[14][15] Interoperability in web services spans syntactic, semantic, and pragmatic levels to bridge heterogeneous systems effectively. Syntactic interoperability guarantees that messages adhere to common formats, such as XML schemas and SOAP envelopes, allowing seamless data exchange regardless of underlying platforms.[2] Semantic interoperability extends this by ensuring shared interpretations of data meanings, often via ontologies or semantic annotations that clarify intent beyond mere structure. Pragmatic interoperability addresses higher-level coordination, including conversational protocols and business process alignments, to prevent miscommunications in multi-step interactions. These layered approaches collectively enable robust machine-to-machine collaboration.[16] As integral components of service-oriented architecture (SOA), web services act as reusable building blocks that encapsulate discrete functionalities, facilitating the orchestration of loosely coupled applications across organizational boundaries. This integration leverages standardized protocols to abstract implementation details, allowing services to be discovered, composed, and governed within SOA frameworks for greater agility and modularity.[17]Historical Development
Origins and Early Standards
The origins of web services can be traced to the limitations of earlier distributed computing paradigms in the 1990s, particularly CORBA and DCOM, which emphasized tightly coupled, platform-specific integrations that hindered interoperability across heterogeneous systems.[18] CORBA, standardized by the Object Management Group in 1991, provided a middleware solution for object-oriented distributed computing using IDL for interface definitions and IIOP for communication, but its complexity and proprietary extensions limited broad adoption. Similarly, Microsoft's DCOM, released in 1996 as an extension of COM, enabled component-based interactions over networks but remained Windows-centric and struggled with firewall traversal and cross-platform compatibility. These technologies influenced web services by highlighting the need for looser coupling and web-native protocols to support scalable, vendor-neutral application integration. The rise of XML in the late 1990s provided a foundational enabler for web services, addressing the limitations of HTML's presentation-focused structure by offering a flexible, extensible format for structured data exchange suitable for machine-to-machine communication. XML 1.0, proposed by the W3C in 1997 and formalized as a Recommendation on February 10, 1998, gained traction for business-to-business (B2B) scenarios, where organizations sought standardized ways to integrate disparate systems beyond human-readable web pages, such as in supply chain automation and electronic data interchange (EDI) upgrades.[19] This motivation was driven by the internet's growth and the demand for interoperable services that could leverage HTTP without proprietary middleware, paving the way for XML-based protocols to replace rigid formats like those in CORBA or DCOM. Key milestones in formalizing web services began with the introduction of SOAP in 1998, a lightweight XML-based messaging protocol designed for invoking methods on remote objects over HTTP.[20] Developed by engineers at DevelopMentor and Microsoft, including Don Box, Bob Atkinson, Dave Winer, and Mohsen Al-Ghosein, the initial SOAP specification was submitted to the IETF on September 13, 1999, as a simple alternative to RPC mechanisms in earlier systems, emphasizing envelope-based encoding for requests and responses. Building on this, WSDL emerged in 2000 to provide a standardized XML format for describing service interfaces, operations, and bindings, enabling automated discovery and client generation.[21] Jointly authored by Microsoft, IBM, and Ariba, the WSDL 1.0 note was published in September 2000, defining abstract and concrete elements to abstract away transport details while supporting SOAP. Concurrently, UDDI 1.0 was announced on September 6, 2000, by the same trio of companies, specifying an XML-based registry for publishing, discovering, and integrating web services through inquiry and publication APIs.[22] The World Wide Web Consortium (W3C) played a pivotal role in standardizing these early technologies, launching the Web Services Activity on January 25, 2002, to develop an architecture for XML-based services that ensured reliability, security, and interoperability over the web.[23] This initiative, encompassing working groups on architecture, description, and XML protocols, built upon SOAP (submitted to W3C in 1999 and advanced to 1.1 in 2000) to create a cohesive framework, addressing gaps in the initial industry-led specifications like incomplete error handling and versioning.[24]Evolution to Modern Practices
Following the establishment of early web service standards in the early 2000s, a significant shift occurred post-2005 toward lighter-weight architectures, driven by the rise of Web 2.0 principles that emphasized user-generated content, interoperability, and simplicity in data exchange.[25] This led to widespread adoption of REST (Representational State Transfer) over SOAP, favoring HTTP methods and JSON for payloads due to their reduced overhead and alignment with web-native practices, enabling easier integration in dynamic applications like mashups. By the late 2000s, major platforms such as Amazon and Google had pivoted to RESTful APIs, marking a departure from XML-heavy protocols to promote scalability and developer accessibility.[26] In the 2010s, web services evolved further through the emergence of microservices architecture, which decomposed monolithic applications into small, independent services communicating via lightweight protocols like REST and often packaged in containers.[27] This trend, gaining traction around 2011-2012, addressed scalability challenges in cloud environments by allowing granular deployment and fault isolation, with Docker's 2013 launch providing a standardized containerization layer that simplified orchestration and portability across infrastructures.[28] Companies like Netflix and Amazon exemplified this by migrating to microservices, achieving faster iteration cycles and resilience in high-traffic systems.[27] The need for managing these distributed services spurred the rise of API management platforms in the mid-2010s, with API gateways emerging as central components for controlling access, traffic, and evolution. AWS API Gateway, launched in 2015, introduced features like request throttling to prevent overload—using a token bucket algorithm for rate limiting—and API versioning to support backward compatibility without disrupting consumers.[29][30] These tools enabled secure, scalable exposure of microservices as APIs, with the default account-level steady-state throttling limit of 10,000 requests per second (RPS) per Region and a burst capacity of 5,000 requests, adjustable for enterprise needs.[31] As of 2025, web services increasingly integrate with serverless computing paradigms, where functions execute on-demand without server management, enhancing cost-efficiency for event-driven architectures and microservices. By late 2025, serverless adoption has exceeded 75% among organizations using major cloud providers, surpassing earlier forecasts.[32][33] This is complemented by AI-driven service orchestration, leveraging machine learning for automated scaling, anomaly detection, and workflow optimization in multi-cloud environments.[34] Forrester highlights IT's role in AI orchestration to ensure responsible deployment, predicting 50% of businesses will enable self-service help desks as the first-contact touchpoint in 2025.[35]Types and Architectures
SOAP-Based Web Services
SOAP (Simple Object Access Protocol) is an XML-based messaging protocol designed for exchanging structured information between applications in a decentralized, distributed environment, enabling the implementation of web services.[36] Developed initially by Microsoft and later standardized by the W3C, SOAP provides a platform-independent method for remote procedure calls and document-style messaging, supporting extensibility through its XML foundation.[37] It operates independently of the underlying transport protocol, focusing on the format and processing rules for messages rather than specific application semantics.[38] The core of a SOAP message is the envelope, which serves as the root XML element encapsulating the entire message content.[36] The envelope includes an optional Header element for metadata, such as processing instructions, security tokens, or routing information, allowing intermediaries to handle specific blocks without accessing the main payload.[36] The mandatory Body element contains the actual payload, consisting of application-specific data that the ultimate receiver processes, potentially triggering side effects like state changes.[36] For error conditions, the Body may include a Fault element, which details the issue through subelements such as Code (indicating the error type), Reason (human-readable explanation), Node (fault generation point), Role (responsible entity), and Detail (application-specific information).[36] SOAP messages are bound to various transport protocols to facilitate transmission, with HTTP being the most common due to its ubiquity and firewall compatibility, typically using POST method over port 80 or 443 for secure channels.[36] Other bindings include SMTP for asynchronous email-like exchanges and TCP for direct socket connections in custom scenarios, enabling flexibility across different network environments.[36] These bindings follow a framework that maps SOAP envelopes to the transport's syntax, ensuring reliable delivery without mandating a single protocol.[36] In enterprise environments, particularly financial systems, SOAP is widely adopted for its robustness in handling complex, stateful interactions that require strict data integrity and compliance.[39] It supports ACID (Atomicity, Consistency, Isolation, Durability) properties through extensions like WS-AtomicTransaction, which coordinates distributed transactions across services to ensure all-or-nothing outcomes in scenarios such as banking transfers.[40][41] Additionally, integration with WS-Security enables message-level protections, including encryption, digital signatures, and authentication tokens, making it suitable for secure exchanges in regulated sectors like finance.[42] SOAP services are typically described using WSDL to define interfaces and operations.RESTful Web Services
RESTful web services implement the Representational State Transfer (REST) architectural style, which Roy Fielding introduced in his 2000 doctoral dissertation as a way to design scalable, networked systems inspired by the World Wide Web.[43] This style defines a set of constraints that promote simplicity, interoperability, and performance in distributed applications, treating everything as a resource that can be addressed and manipulated uniformly.[43] Core to REST is the concept of resources—any information or functionality that can be named and referenced—identified via Uniform Resource Identifiers (URIs), such as/users/123 for a specific user profile.[43] Operations on these resources leverage standard HTTP methods: GET to retrieve representations without side effects, POST to create new resources, PUT to update or replace existing ones, and DELETE to remove them, ensuring predictable and intuitive interactions.[43]
RESTful design emphasizes a uniform interface across services, achieved through resource identification, manipulation via representations (like JSON documents), self-descriptive messages, and hypermedia controls that guide client actions.[43] Communication is stateless, meaning each request from client to server must contain all necessary information, allowing servers to process requests independently without retaining session data, which enhances scalability and reliability.[43] Cacheability is another principle, where responses can be marked as cacheable to reduce latency and server load, while layered systems enable intermediaries like proxies for security and optimization without altering core logic.[43] A distinguishing feature is Hypermedia as the Engine of Application State (HATEOAS), where server responses include hyperlinks to related resources, allowing clients to discover and navigate the API dynamically without hardcoded knowledge of the entire structure.[43] This resource-oriented approach fosters loose coupling between clients and servers, making systems more maintainable and evolvable.
In practice, RESTful web services prioritize lightweight data formats, with JSON preferred over XML for its concise syntax, ease of parsing in modern programming languages, and reduced bandwidth usage, which aligns with REST's goals of efficiency and simplicity.[44] JSON's key-value structure enables straightforward representation of complex nested data, such as objects and arrays, facilitating faster development and lower overhead in high-volume API interactions.[44] For instance, the X (formerly Twitter) API employs RESTful endpoints like GET /2/tweets to fetch tweet data in JSON format, supporting real-time social media interactions through resource-based queries and updates.[45] Similarly, the Stripe API uses REST principles for payment processing, with endpoints such as POST /v1/charges to create transactions, returning JSON responses that include HATEOAS links for subsequent actions like refunds.[46] These examples illustrate how REST enables modular, web-native services that contrast with more rigid protocols like SOAP by directly utilizing HTTP's verbs for operations.[43]
