儘管可以使用許多技術來實現面向服務體系結構(SOA),不過最常用的還是使用 Web 服務,這意味著要使用 XML。 SOAP 和 REST 是實現 Web 服務最受歡迎的兩種方法,這兩者都基於 XML。
一個例子
比如說,透過將這個SOAP 文件作為Web 請求發送,可以向Google Web 服務提
儘管可以使用許多技術來實現面向服務體系結構(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 服務處理的資訊所組成。
以上是具體介紹XML與Web服務和SOA有何關聯?的詳細內容。更多資訊請關注PHP中文網其他相關文章!