This post originated from an RSS feed registered with Java Buzz
by Arjen Poutsma.
Original Post: Thoughts on a SOA, part 3: Itâs the Contract, stupid!
Feed Title: The Ancient Art of Programming
Feed URL: http://feeds.feedburner.com/TheAncientArtOfProgramming
Feed Description: A blog about programming in .NET and Java
The most central concept within a Web Service is its Contract. In this contract, you define:
the name, and other properties of the service,
the operations it supports, and
the messages accepted and sent by the operations.
ith the Binding of the service, this makes a Endpoint, i.e. something you can point a client ...