Are self-described / auto-descriptive services loosely or tightly coupled in a SOA architecture ?

Posted by snowflake on Stack Overflow See other posts from Stack Overflow or by snowflake
Published on 2010-03-26T15:16:10Z Indexed on 2010/06/15 9:12 UTC
Read the original article Hit count: 196

I consider a self-described / auto-descriptive service as a good thing in a SOA architecture, since (almost) everything you know to call the service is present in the service contract (such a WSDL).

Sample of a non self-described service for me is Facebook Query Language (FQL http://wiki.developers.facebook.com/index.php/FQL), or any web service exchanging XML flow in a one String parameter for then parsing XML and performing treatments.

Last ones seem further more technically decoupled, since technically you can switch implementations without technical impact on the caller, handling compatibility between implementations/versions at a business level. On the other side, having no strong interface (diluted into the service and its version), make the service tightly coupled to the existing implementation (more difficulty to interchange the service and to ensure perfect compatibility).

This question is related to http://stackoverflow.com/questions/2503071/how-to-implement-loose-coupling-with-a-soa-architecture

So, are self-described / auto-descriptive services loosely or tightly coupled in a SOA architecture ? What are the impacts regarding ESBs ?

Any pointer will be appreciated.

© Stack Overflow or respective owner

Related posts about web-services

Related posts about soa