WSDL文档结构详解(五)

1.实例截图

WSDL文档结构详解(五)_第1张图片

2.wsdl文件分析 :


   
   
        xmlns:xsd="
http://www.w3.org/2001/XMLSchema"
    xmlns:wsdl="
http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="
http://ws.java.atguigu.net/"
    xmlns:soap="
http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:ns1="
http://schemas.xmlsoap.org/soap/http"
    name="HelloWSImplService"
    targetNamespace="
http://ws.java.atguigu.net/">
    
    
     http://www.w3.org/2001/XMLSchema
"
      xmlns:tns="
http://ws.java.atguigu.net/"
      elementFormDefault="unqualified"
      targetNamespace="
http://ws.java.atguigu.net/" version="1.0">
      
      
      
      
      
       
        
       

      

      
       
        
       

      

     
    
    
    
    
     
     

    

    
     
     

    

    
    
    
     
      
      

      
      

     

    

    
    
            transport="
http://schemas.xmlsoap.org/soap/http" />
     
      
      
       
      

      
       
      

     

    
    
    
     
      http://192.168.1.104/ws_server/helloWS
" />
     
    
   

 

3.文档结构

 

 

3.1 文档结构图

WSDL文档结构详解(五)_第2张图片

4. 重要标签的说明

· types - 数据类型(标签)定义的容器,里面使用schema定义了一些标签结构供message引用 

· message - 通信消息的数据结构的抽象类型化定义。引用types中定义的标签

· operation - 对服务中所支持的操作的抽象描述,operation描述了一个访问入口的请求消息与响应消息对。

· portType - 对于某个访问入口点类型所支持的操作的抽象集合,这些操作可以由一个或多个服务访问点来支持。

· binding - 特定端口类型的具体协议和数据格式规范的绑定。

· service- 相关服务访问点的集合

· port - 定义为协议/数据格式绑定与具体Web访问地址组合的单个服务访问点。

 

 

你可能感兴趣的:(WebService)