一 Web Service1 互操作性: 跨语言、跨平台、跨地域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> 相关文章: 2022-12-23 2021-11-09 2022-12-23 2022-12-23 2021-12-07 2021-07-25 2021-09-04