Issues with the intended behavior of a Service layer?
Posted
by
Rafael Cichocki
on Programmers
See other posts from Programmers
or by Rafael Cichocki
Published on 2012-11-13T13:36:04Z
Indexed on
2012/11/13
17:17 UTC
Read the original article
Hit count: 296
soa
This analysis makes sense, and states anything that avoids code duplication and simplifies maintenance speaks for a service layer.
What is the technical behavior?
- When a service client references a service, does it do so at runtime, or does it happen at compile time?
- When I change something in the service layer code, will this change be automatically taken into account in all it's clients, or do they need to be individually recompiled?
- How does this make sense from a testing point of view - I have working code, based on some code from a service, but if that service changes, my code might break?!
© Programmers or respective owner