一 Web Service
1 互操作性:
跨语言、跨平台、跨地域
2 什么是Web Service:
a 能够把应用程序逻辑显示给远程调用对象/松偶合/使用基于 Web 的开放标准。
b 可以使用任何一种基于XML的语言来编写。
c 平台独立性。
3 Web Service原理
HTTP--->XML/SOAP--->WSDL--->UDDI
1 互操作性:
跨语言、跨平台、跨地域
2 什么是Web Service:
a 能够把应用程序逻辑显示给远程调用对象/松偶合/使用基于 Web 的开放标准。
b 可以使用任何一种基于XML的语言来编写。
c 平台独立性。
3 Web Service原理
HTTP--->XML/SOAP--->WSDL--->UDDI
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<HelloWorld xmlns="http://tempuri.org/">
<str>string</str>
</HelloWorld>
</soap:Body>
</soap:Envelope>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<HelloWorld xmlns="http://tempuri.org/">
<str>string</str>
</HelloWorld>
</soap:Body>
</soap:Envelope>