关于web services和XML的问题。(100分)

  • 主题发起人 主题发起人 lokaife
  • 开始时间 开始时间
L

lokaife

Unregistered / Unconfirmed
GUEST, unregistred user!

请问在web services中,XML的使用如何体现的?请在理论上给我说清楚点,然后给我多点例子可以吗?
另外能不能说简单说说XSL?
谢谢了。
 
Web Services - SOAP 中 XML 被用来
1、作为数据通讯格式 SOAP Envelope, SOAP Body 和 SOAP Request/Response
<soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"><soap:Header>
...
...
</soap:Header><soap:Body>
...
...
<soap:Fault>
...
...
</soap:Fault>
</soap:Body></soap:Envelope>
2、描述 Web Service - WSDL
<wsdl:definitions>
<wsdl:types>
definition of types........
</wsdl:types>
<wsdl:message>
definition of a message....
</wsdl:message>
<wsdl:portType>
definition of a port.......
</wsdl:portType>
<wsdl:binding>
definition of a binding....
</wsdl:binding>
<wsdl:service>
definition of a service....
</wsdl:service>
<-- extensibility element -->
</wsdl:definitions>
 
yysun:
能不能再具体说说??展开谈谈?
 
看李维的新书!有详细介绍哦。
 
sunkezai:
没有的,李维的新书就对SOAP和Web Service的理论讲得很多,对于XML没有什么具体
的介绍的。更不用说它与Web Service 的关系了。
 
找一个离线数据库的代码kk,相信会有帮助的
 

这样呀??
 
后退
顶部