Home  >  Article  >  Backend Development  >  Description of XML Schema-WSD

Description of XML Schema-WSD

黄舟
黄舟Original
2017-03-14 16:17:342009browse

Web Services Description Language (Web Services Description Language, WSDL) provides a simple way to describe Web services (mostly using SOAP). WSDL allows you to describe services and interfaces provided using the SOAP standard. For example, you can create a WSDL file that describes the services provided on a certain server, and then distribute the file to servers that need these services. Web Services Description Language (WSDL) provides a way to describe Web services. Simple method (mostly using SOAP). WSDL allows you to describe services and interfaces provided by the SOAP standard.
For example, you can create a WSDL file that describes the services provided on a certain server, and then distribute the file to Web service consumers who need these services. By reading and parsing the WSDL file, consumers learn everything they need to know to use these Web services, including the
data types that can be exchanged, the parameters, and the various errors and other information returned. Using the example from
W3C again, you can see that the declaration of the different remote functions and the data exchanged are all handled through the XML definition of the structure, As shown in Listing 3.
Listing 3. XML definitions of different remote functions and exchanged data
         

 









  

  



    

    



      

      

  

    

      

            

    

  

      



      

      

  

    

      

    

  

      



      

      

  

    

      

    

  

      



    

  



  



  

  

    

  



  

  

    

  



  

  



    

    

      

      

      

    

  



  

  



    

    



    

    



      

      



      

      

        

      

      

        

      

      

        

      

    

  



  

  

    snowboarding-info.com Endorsement Service 



    

    



      

      

    

  



 

WSDL declares the message type, default data type and content, and exchanged data structure .

Everything you need to access the SOAP structure on the server can be found in this WSDL. Most languages ​​and environments provide a mechanism for reading and parsing WSDL to determine available functions and data exchanges.
WSDL not only defines the SOAP interface for exchanging information, but with the appropriate WSDL generator, can also be used to create the code needed to send requests and generate and format responses.
WSDL and SOAP form a powerful remote procedure call system.                                                                                              

The above is the detailed content of Description of XML Schema-WSD. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn