This post originated from an RSS feed registered with .NET Buzz
by Arjen Poutsma.
Original Post: Thoughts on a SOA, part 4: Implementing the Contract
Feed Title: The Ancient Art of Programming
Feed URL: http://feeds.feedburner.com/TheAncientArtOfProgramming
Feed Description: A blog about programming in .NET and Java
How do you implement a Web Service contract? Basically, there are three ways to do so:
coinciding contract and implemetation
generating stubs, or
handling raw messages,
Let's go over these options one by one, using SOAP as our prime service architecture.
Coinciding Contract and Implementation
If the contract is generated out of the implementation, the implementation ...