Web services protocol stack
Appearance
The Web service protocol stack is a collection of computer networking protocols that are used to define, locate, implement, and make Web services interact with each other. The Web service protocol stack mainly comprises four areas:
- (Service) Transport Protocol: responsible for transporting messages between network applications and includes protocols such as HTTP, SMTP, FTP, as well as the more recent Blocks Extensible Exchange Protocol (BEEP).
- (XML) Messaging Protocol: responsible for encoding messages in a common XML format so that they can be understood at either end of a network connection. Currently, this area includes such protocols as XML-RPC, WS-Addressing, and SOAP.
- (Service) Description Protocol: used for describing the public interface to a specific web service. The WSDL interface format is typically used for this purpose.
- (Service) Discovery Protocol: centralizes services into a common registry such that network web services can publish their location and description, and makes it easy to discover what services are available on the network. At present, the UDDI API is normally used for service discovery.
Web service protocol stack also includes a whole range of recently defined protocols: BPEL, SOAP-DSIG.
External links
- Lawrence Wilkes (updated Feb 2005) The Web Services Protocol Stack
- Alex Nghiem (2003) The Basic Web Services Stack
- Ethan Cerami (2002) Top Ten FAQs for Web Services
- Pavel Kulchenko (2002) Web Services Acronyms, Demystified
- AlchemySOAP, open source C++ SOAP 1.1/1.2 web service protocol stack