0 votes
in Web Service by
What is WSDL?

1 Answer

0 votes
by

The WSDL stands for Web Services Description Language. It is an XML document containing information about web services such as method name, method parameter. The Client needs a data dictionary which contains information about all the web services with methods names and parameters list to invoke them for the web services. The Web Service Description Language bridge up this gap, by providing all necessary information to the client.

Some Important elements used in Web Services Description language are as follows:

  1. <message>: The message element in WSDL is used to define all different data elements for each operation performed by the web service.
  2. <portType>: The port type element is used to determine the operation which can be performed by the web service. This operation can have two messages one is input and the second one is the output message.
  3. <binding>: This element contains the used protocol.

Related questions

0 votes
0 votes
asked Nov 30, 2019 in SOAPUI by Sinaya
0 votes
asked Nov 25, 2019 in SOAPUI by rajeshsharma
0 votes
asked Sep 25, 2023 in Web Service by Robin
...