Handle Others’ Versions
Learn about designing for version changes, load application service, making changes to service, full duplex and half duplex testing.
Designing for version changes
When receiving requests or messages, our application has no control over the format. No matter how well the service’s expectations are defined, some non-serious person can pass us a bogus message. We’re lucky if the message is just missing some required fields. Right now, we’re just going to talk about how to design for version changes. (For a more thoroughly chilling discussion about interface definitions, see Integration Points). The same goes for calling out to other services. The other endpoint can start rejecting our requests at any time. After all, they may not observe the same safety rules we just ...