盡管可以使用許多技術來實現面向服務體系結構(SOA),不過最常用的還是使用 Web 服務,這意味著要使用 XML。SOAP 和 REST 是實現 Web 服務最流行的兩種方法,這兩者都基於 XML。
一個例子
比如說,通過將這個 SOAP 文檔作為 Web 請求發送,可以向 Google Web 服務提出請求。(如清單 2 所示)
清單 2. 通過發送 SOAP 文檔向 Google Web 服務提出請求
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV=
"http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:doGoogleSearch xmlns:ns1="urn:GoogleSearch"
SOAP-ENV:encodingStyle=
"http://schemas.xmlsoap.org/soap/encoding/">
<key xsi:type="xsd:string">00000000000000000000000000000000</key>
<q xsi:type="xsd:string">death star trash compactor</q>
<start xsi:type="xsd:int">0</start>
<maxResults xsi:type="xsd:int">10</maxResults>
<filter xsi:type="xsd:boolean">true</filter>
<restrict xsi:type="xsd:string"></restrict>
<safeSearch xsi:type="xsd:boolean">false</safeSearch>
<lr xsi:type="xsd:string"></lr>
<ie xsi:type="xsd:string">latin1</ie>
<oe xsi:type="xsd:string">latin1</oe>
</ns1:doGoogleSearch>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
此處我們可以看到 SOAP
信封(envelope),它是 Web 服務引擎能夠理解的標准格式。這個消息的內容(在本例中為 doGoogleSearch 元素)被認作是
有效載荷(payload),由即將被 Web 服務處理的信息所組成。