一 Web Service
1 互操作性:
  跨语言、跨平台、跨地域
2 什么是Web Service:
     a  能够把应用程序逻辑显示给远程调用对象/松偶合/使用基于 Web 的开放标准。
   b 可以使用任何一种基于XML的语言来编写。
   c 平台独立性。
3 Web Service原理
  HTTP--->XML/SOAP--->WSDL--->UDDI

构建和使用 Web Services<?xml version="1.0" encoding="utf-8"?>
构建和使用 Web Services
<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/">
构建和使用 Web Services  
<soap:Body>
构建和使用 Web Services    
<HelloWorld xmlns="http://tempuri.org/">
构建和使用 Web Services      
<str>string</str>
构建和使用 Web Services    
</HelloWorld>
构建和使用 Web Services  
</soap:Body>
构建和使用 Web Services
</soap:Envelope>

相关文章:

  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2021-07-25
  • 2021-09-04
猜你喜欢
  • 2021-07-20
  • 2022-12-23
  • 2021-05-05
  • 2021-11-29
  • 2022-01-06
  • 2021-07-11
  • 2021-05-25
相关资源
相似解决方案