digplanet beta 1: Athena
Share digplanet:

Agriculture

Applied sciences

Arts

Belief

Business

Chronology

Culture

Education

Environment

Geography

Health

History

Humanities

Language

Law

Life

Mathematics

Nature

People

Politics

Science

Society

Technology

SOAP, originally defined as Simple Object Access Protocol, is a protocol specification for exchanging structured information in the implementation of Web Services in computer networks. It relies on XML Information Set for its message format, and usually relies on other Application Layer protocols, most notably Hypertext Transfer Protocol (HTTP) or Simple Mail Transfer Protocol (SMTP), for message negotiation and transmission.

Contents

Characteristics [edit]

SOAP can form the foundation layer of a web services protocol stack, providing a basic messaging framework upon which web services can be built. This XML based protocol consists of three parts: an envelope, which defines what is in the message and how to process it, a set of encoding rules for expressing instances of application-defined datatypes, and a convention for representing procedure calls and responses. SOAP has three major characteristics: Extensibility (security and WS-routing are among the extensions under development), Neutrality (SOAP can be used over any transport protocol such as HTTP, SMTP, TCP, or JMS) and Independence (SOAP allows for any programming model). As an example of how SOAP procedures can be used, a SOAP message could be sent to a web site that has web services enabled, such as a real-estate price database, with the parameters needed for a search. The site would then return an XML-formatted document with the resulting data, e.g., prices, location, features. With the data being returned in a standardized machine-parsable format, it can then be integrated directly into a third-party web site or application.

The SOAP architecture consists of several layers of specifications for: message format, Message Exchange Patterns (MEP), underlying transport protocol bindings, message processing models, and protocol extensibility. SOAP is the successor of XML-RPC, though it borrows its transport and interaction neutrality and the envelope/header/body from elsewhere (probably from WDDX).[citation needed]

History [edit]

SOAP structure

SOAP was designed as an object-access protocol in 1998 by Dave Winer, Don Box, Bob Atkinson, and Mohsen Al-Ghosein for Microsoft, where Atkinson and Al-Ghosein were working at the time.[1] The SOAP specification is currently maintained by the XML Protocol Working Group of the World Wide Web Consortium.

SOAP originally stood for 'Simple Object Access Protocol' but this acronym was dropped with Version 1.2 of the standard.[2] Version 1.2 became a W3C recommendation on June 24, 2003. The acronym is sometimes confused with SOA, which stands for Service-oriented architecture, but the acronyms are unrelated.

After SOAP was first introduced, it became the underlying layer of a more complex set of Web Services, based on Web Services Description Language (WSDL) and Universal Description Discovery and Integration (UDDI). These services, especially UDDI, have proved to be of far less interest, but an appreciation of them gives a more complete understanding of the expected role of SOAP compared to how web services have actually evolved.

Specification [edit]

The SOAP specification defines the messaging framework which consists of:

  • The SOAP processing model defining the rules for processing a SOAP message
  • The SOAP extensibility model defining the concepts of SOAP features and SOAP modules
  • The SOAP underlying protocol binding framework describing the rules for defining a binding to an underlying protocol that can be used for exchanging SOAP messages between SOAP nodes
  • The SOAP message construct defining the structure of a SOAP message

Processing model [edit]

The SOAP processing model describes a distributed processing model, its participants, the SOAP nodes, and how a SOAP receiver processes a SOAP message. The following SOAP nodes are defined:

SOAP sender
A SOAP node that transmits a SOAP message.
SOAP receiver
A SOAP node that accepts a SOAP message.
SOAP message path
The set of SOAP nodes through which a single SOAP message passes.
Initial SOAP sender (Originator)
The SOAP sender that originates a SOAP message at the starting point of a SOAP message path.
SOAP intermediary
A SOAP intermediary is both a SOAP receiver and a SOAP sender and is targetable from within a SOAP message. It processes the SOAP header blocks targeted at it and acts to forward a SOAP message towards an ultimate SOAP receiver.
Ultimate SOAP receiver
The SOAP receiver that is a final destination of a SOAP message. It is responsible for processing the contents of the SOAP body and any SOAP header blocks targeted at it. In some circumstances, a SOAP message might not reach an ultimate SOAP receiver, for example because of a problem at a SOAP intermediary. An ultimate SOAP receiver cannot also be a SOAP intermediary for the same SOAP message.

Transport methods [edit]

Both SMTP and HTTP are valid application layer protocols used as Transport for SOAP, but HTTP has gained wider acceptance as it works well with today's Internet infrastructure; specifically, HTTP works well with network firewalls. SOAP may also be used over HTTPS (which is the same protocol as HTTP at the application level, but uses an encrypted transport protocol underneath) with either simple or mutual authentication; this is the advocated WS-I method to provide web service security as stated in the WS-I Basic Profile 1.1.

This is a major advantage over other distributed protocols like GIOP/IIOP or DCOM which are normally filtered by firewalls. SOAP over AMQP is yet another possibility that some implementations support.[3]

SOAP also has the advantage over DCOM that it is unaffected by security rights being configured on the machines which require knowledge of both transmitting and receiving nodes. This allows SOAP to be loosely coupled in a way that is not possible with DCOM.

There is also the SOAP-over-UDP OASIS standard.

Message format [edit]

XML Information Set was chosen as the standard message format because of its widespread use by major corporations and open source development efforts. Typically, XML Information Set is serialized as XML. A wide variety of freely available tools significantly eases the transition to a SOAP-based implementation. The somewhat lengthy syntax of XML can be both a benefit and a drawback. While it promotes readability for humans, facilitates error detection, and avoids interoperability problems such as byte-order (Endianness), it can slow processing speed and can be cumbersome. For example, CORBA, GIOP, ICE, and DCOM use much shorter, binary message formats. On the other hand, hardware appliances are available to accelerate processing of XML messages.[4][5] Binary XML is also being explored as a means for streamlining the throughput requirements of XML. XML messages by their self documenting nature usually have more 'overhead' (Headers, footers, nested tags, delimiters) than actual data in contrast to earlier protocols where the overhead was usually a relatively small percentage of the overall message .

In financial messaging SOAP was found to result in a 2-4 times larger message than previous protocols (FIX (Financial Information Exchange) and CDR Common Data Representation) [6]

It is important to note that XML Information Set does not require to be serialized in XML. For instance, a CSV or JSON XML-infoset representation exists. There is also no need to specify a generic transformation framework. The concept of SOAP bindings allows for specific bindings for a specific application. The drawback is that both the senders and receivers have to support this newly defined binding.

Example message [edit]

POST /InStock HTTP/1.1
Host: www.example.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: 299
SOAPAction: "http://www.w3.org/2003/05/soap-envelope"
 
<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
  <soap:Header>
  </soap:Header>
  <soap:Body>
    <m:GetStockPrice xmlns:m="http://www.example.org/stock">
      <m:StockName>IBM</m:StockName>
    </m:GetStockPrice>
  </soap:Body>
</soap:Envelope>

Technical critique [edit]

Advantages [edit]

  • SOAP is versatile enough to allow for the use of different transport protocols. The standard stacks use HTTP as a transport protocol, but other protocols such as JMS[7] and SMTP[8] are also usable.
  • Since the SOAP model tunnels fine in the HTTP post/response model, it can tunnel easily over existing firewalls and proxies, without modifications to the SOAP protocol, and can use the existing infrastructure.

Disadvantages [edit]

  • When using standard implementations and the default SOAP/HTTP binding, the XML infoset is serialized as XML. Because of the verbose XML format, SOAP can be considerably slower than competing middleware technologies such as CORBA or ICE. This may not be an issue when only small messages are sent.[9] To improve performance for the special case of XML with embedded binary objects, the Message Transmission Optimization Mechanism was introduced.
  • When relying on HTTP as a transport protocol and not using WS-Addressing or an ESB, the roles of the interacting parties are fixed. Only one party (the client) can use the services of the other. Developers must use polling instead of notification in these common cases.

See also [edit]

References [edit]

  1. ^ "Exclusive .NET Developer's Journal "Indigo" Interview with Microsoft's Don Box". Dotnet.sys-con.com. Retrieved 2012-10-04. 
  2. ^ "SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)". W3C. April 27, 2007. Retrieved 2012-06-15. "Note: In previous versions of this specification the SOAP name was an acronym. This is no longer the case. (Underneath section 1. Introduction)" 
  3. ^ [1][dead link]
  4. ^ "IBM Datapower". 306.ibm.com. 2011-11-30. Retrieved 2012-10-04. 
  5. ^ "IBM Zurich XML Accelerator Engine" (PDF). Retrieved 2012-10-04. 
  6. ^ "Evaluating SOAP for High Performance Business Applications: Real-Time Trading Systems". Tenermerx Pty Ltd University of Technology, Sydney. 2011-11-30. Retrieved 2013-03-14. 
  7. ^ "SOAP over Java Message Service 1.0". W3C. June 4, 2009. Retrieved 2011-02-01. 
  8. ^ "SOAP Version 1.2 Part 0: Primer". W3C. December 17, 2001. Retrieved 2011-02-01. 
  9. ^ Olson, Mike; Ogbuji, Uche (July 3, 2002). "The Python Web services developer: Messaging technologies compared". IBM developerWorks. Retrieved 2011-02-01. 

External links [edit]


Original courtesy of Wikipedia: http://en.wikipedia.org/wiki/SOAP — Please support Wikipedia.
A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia.
1000000 videos foundNext > 

Soap - Chuck, Bob, Jodie and the Refrigerator

From the TV series "Soap". In this clip, Jodie (Billy Crystal) steals Bob, and Chuck freaks out! For those of you that don't know the series, Jodie is gay an...

Soap (TV comedy) opening/intro

Soap opening sequence. In this clip, you will see what is upcoming episode, then the intro of the show. Announced by the late Rod Roddy.

Soap - The Best of Benson

From the TV sitcom, Soap. This is the best of the Tate family's butler/cook, Benson. He even had his own spin-off series. Taken from episodes 1-7.

Soap - Chuck Enters

Copyright: I own nothing. Soap was produced by Witt/Thomas/Harris Productions and Columbia Pictures Television, and is currently distributed by Sony Pictures...

6 Color In The Pot Soap Swirling

Using the In The Pot Method, watch how I swirl 6 colors of soap to create a fun and colorful bar. More information on the soap here: http://www.kbshimmer.com...

S.O.A.P. - This Is How We Party

Music video by S.O.A.P. performing This Is How We Party. (C) 1998 Sony Music Entertainment (Denmark)

Soap - Chuck and Bob Mindreading

To me, this is one of the funniest clips from TV ever. If you were a fan of Soap, you will love this.

How to Make a Layered Soap Cake {marbleized}

Week 52 of Soaping101 and we are making marbleized layer soap cakes. The links to soap mold can be found here: http://www.soaping101.com/equipment.html Royal...

Best Moments in SOAP History Pt. 1.

For my SOAP fan site on Myspace. www.myspace.com/soapfansite.

SOAP - When we were younger, there were no such things as homosexuals

Jodie (Billy Crystal) and Jessica (Katherine Helmond) have an enlightening discussion on the history of homosexuals. From the late 70's/early 80's sit com SOAP.

1000000 videos foundNext > 

9361682 news items

 
Sioux City Journal
Fri, 24 May 2013 20:04:09 -0700

Lani, a Nodland Elementary School first-grader, and her 8-year-old sister, Malia Schmidt, will be among the racers participating in the Greater Siouxland Soap Box Derby. The event is held on a sloped soap box derby track north of the Lewis & Clark Park ...

UPI.com

HotNewHipHop
Thu, 23 May 2013 17:22:40 -0700

Like RiFF RAFF before him, it seems Snoop Dogg will be appearing on the Emmy award-winning television soap opera "One Life To Live." As reported by HipHopDX, the Doggfather will appear in four episodes of the show on May 28th and 30th, as well as ...

New York Daily News

New York Daily News
Thu, 23 May 2013 07:37:56 -0700

Soap opera fans sometimes find it hard to separate fact from fiction. A Colombian actor was beaten to within an inch of his life after angry viewers thought he actually was the villain he portrays. RELATED: VIDEO: THIEF HIT BY BUS AFTER SNATCHING ...
 
Broadway.com
Thu, 23 May 2013 07:42:38 -0700

After graduating from North Carolina School of the Arts and making his Broadway debut in The Ritz, Magnussen took over the role of bad boy Casey Hughes on the now-cancelled CBS soap opera As the World Turns. “I went to four years of college but damn, ...
 
Zap2it.com (blog)
Wed, 22 May 2013 17:11:50 -0700

farrah-abraham-new-show-docu-soap.jpg Farrah Abraham, former star of "Teen Mom" and her own sex tape, may be returning to the small screen in the near future. The reality star made the announcement via Twitter Tuesday (May 21), writing, "Get ready for ...

SunHerald.com

SunHerald.com
Thu, 23 May 2013 21:07:25 -0700

When you're ready, mix two tablespoons of liquid dishwashing soap into two gallons of water. Apply the solution to an area about two feet square. In five to 15 minutes, any mole crickets within the drenched area will rise to the surface. If more than ...

The Guardian

The Guardian
Fri, 24 May 2013 05:33:06 -0700

The British Heart Foundation has upbraided ITV soap Emmerdale for having the unhealthiest characters on television, saying they set a terrible example for their millions of viewers with all the time they spend in the pub or scoffing buns in tea rooms ...
 
Green Bay Press Gazette
Fri, 24 May 2013 02:21:03 -0700

You just can't make this stuff up. I record daily episodes of “Young and the Restless,” but I swear, there is more drama lately in the national news. I watched a Congressional hearing earlier this week in which Lois Lerner, director of tax-exempt ...
Loading

Oops, we seem to be having trouble contacting Twitter

Talk About SOAP

You can talk about SOAP with people all over the world in our discussions.

Support Wikipedia

A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia. Please add your support for Wikipedia!