Chapter 5. Scenario: Asynchronous 237
In either case, you must recognize that it is now possible for part of the
interaction to succeed and part of it to fail. When a service consumer
successfully submits a request and this request fails to process, additional action
must be taken to notify the consumer of this failure asynchronously if the
consumer cares about success.
5.2 Solution model
This section discusses the design and implementation of our solution to the
stateless asynchronous interaction from application artifacts in a WebSphere
Application Server application to application artifacts in a Microsoft .NET
application and vice versa.
The solution provided in this section restricts itself to providing a simplified
implementation that illu ...